Mesh refinement

Mesh refinement#

Hide code cell source
from collections import OrderedDict

import matplotlib.pyplot as plt
import numpy as np
import shapely
import shapely.affinity
from skfem import Basis, ElementTriP0, adaptive_theta
from skfem.io.meshio import from_meshio

from femwell.maxwell.waveguide import compute_modes, eval_error_estimator
from femwell.mesh import mesh_from_OrderedDict
polygons_paper = OrderedDict(
    left=shapely.LineString(((0, 0), (0, 1))),
    right=shapely.LineString(((1, 0), (1, 1))),
    top=shapely.LineString(((0, 1), (1, 1))),
    core=shapely.box(0, 0, 0.5, 0.5),
    clad=shapely.box(0, 0, 1, 1),
)

boundaries = [
    [lambda x: x[0] == np.min(x[0]), lambda x: x[0] == np.max(x[0])],
    [lambda x: x[0] == np.min(x[0]), lambda x: x[0] == np.max(x[0])],
    [lambda x: x[0] == np.min(x[0]), lambda x: x[1] == np.max(x[1])],
    [lambda x: x[0] == np.min(x[0]), lambda x: x[1] == np.max(x[1])],
]

epsilons_paper = [
    {"core": 2.25, "clad": 1},
    {"core": 8, "clad": 1},
    {"core": 1, "clad": 2.25},
    {"core": 1, "clad": 8},
]

neff_values_paper = [1.27627404, 2.65679692, 1.387926425, 2.761465320]
num = 3

mesh = from_meshio(
    mesh_from_OrderedDict(polygons_paper, {}, default_resolution_max=0.1, filename="mesh.msh")
)
mesh.draw().show()
../../_images/fd3047f799dc652820ca23ca1998455ab8fb3de98482d4cfc425d2fc4d697ca4.png
for i in range(16):
    basis0 = Basis(mesh, ElementTriP0())
    epsilon = basis0.zeros()
    for subdomain, e in epsilons_paper[num].items():
        epsilon[basis0.get_dofs(elements=subdomain)] = e

    modes = compute_modes(
        basis0, epsilon, wavelength=1.5, num_modes=1, order=1, metallic_boundaries=boundaries[num]
    )
    modes[0].show(modes[0].E.real, direction="x")
    print(f"Error: {modes[0].n_eff - neff_values_paper[num]:.5g}")

    mesh = mesh.refined(adaptive_theta(eval_error_estimator(modes[0].basis, modes[0].E), theta=0.5))
    mesh.draw().show()
/tmp/ipykernel_9506/275219315.py:10: DeprecationWarning: The behavior of passing an array directly to `show` is deprecated and will be removed in the future. Use `plot` instead.
  modes[0].show(modes[0].E.real, direction="x")
../../_images/913a1470707c2279ef733832972aabcd5c0af228fd13b990d0a11ddc74fb3fbc.png
Named boundaries invalidated by a call to Mesh.refined()
Error: 4.2371e-05+0j
../../_images/a9d3e747bde8c0cc04a8aeb71bc0de11bbf3dd5b79e6bd60b20f5f159cfba860.png ../../_images/502b961c6f4629b528f32ece78f7208e5f167a84f38ee4e49d4003b7bfaf989d.png
Error: -0.00011698+0j
../../_images/8a9da7a5a891ad2ae29a43481c01d28522f10a648b92f7d649e669349555bc43.png ../../_images/1aafbc32d6b367db9b3efbcfee4cd94ed03c6cb2238ce4cb00c3ae6fa6104a65.png
Error: -0.00014164+0j
../../_images/d6e54733cb5732db42fcfe33ddf634cfc0ab14da8d6c53a7a4104aa18de53a4f.png ../../_images/3a1ea38a527fc7fe9f3fdce4725702ac3d5a95065dbd15e593078781102df127.png
Error: -0.00014494+0j
../../_images/2398c59db6e2b0369169a9816f5fce0387d3b60a471c5cbdce849bc9aa6448c0.png ../../_images/6eb03aa7a54d407860b932b59e0592c8ade879f8f90aeeaced0fa76f5ba17ece.png
Error: -0.00014891+0j
../../_images/20da1d4d636ec0c94ca9d9d6ffdc485e792d1fb58f9bbd8b34f1936692829a6d.png ../../_images/a594930b1c49e5413c542ac4707a3140d9a1ddbc9fc4f18cd1e6a0dd6ac9605a.png
Error: -0.00013566+0j
../../_images/dfaafbc702ee3c37d667c1506f9116d51690b1d72c26dbd309752122470c16f4.png ../../_images/cd2c6cba3badedb0190889f4c3963d14e265759b0720b86fb61db1743d05a5cf.png
Error: -0.00013255+0j
../../_images/226f24d928a1586ddc3cfaac080093d062636de28616b24bc4561718a1f3db28.png ../../_images/843dfb31a097f9325e3bdf26b56eca5d6b78564f97458ce771ee7183b9b27814.png
Error: -9.8289e-05+0j
../../_images/dc78be624827d7fd066ef6f5fbe09dfe1faa4e6662306f3e5821c879b703523a.png ../../_images/f8f4e248cdaa54ea7c6a6b8ea5ac916af909eccc9fe3c79e39ec1dec6d9bcf88.png
Error: -5.0584e-05+0j
../../_images/b21f097661dbce703d1d5dea45b498ec3edb63f4920a3db7a5f44bdfc215e1ba.png ../../_images/f1678a1cf25ec9482816afe50b45a51296182e4b847172abca1f4a276e69c7a3.png
Error: -4.1234e-05+0j
../../_images/7f74425254a0568a08a371b138aec82ec18a6b15105f16d825dc104b34b63b8a.png ../../_images/9a10ad0db5a3322ca5fbfbec54bf823b3b2d8245af509d9c64622287c44fd8a5.png
Error: -3.4453e-05+0j
../../_images/36eaa8ba4154580cc88e36dedc33db6e88fafd6c865ec2fc23e420e5bea03e07.png ../../_images/646ac7991cc8f984661e3c42bcd023236f3d869c18ef0a3d6263d763a046ebc8.png
Error: -2.3801e-05+0j
../../_images/7687780992ac2e8afe249dbff9e083169fb3e748b2d13c9b1ed1bc0eeee0bae8.png ../../_images/cefd6d6d437ef56cc3658a1c49cfe3db95de523213e3743a554c52a6dadcb560.png
Error: -1.5849e-05+0j
../../_images/6095c66616afe02e615f7d8d70da6e2508601358d04fe1b0e4614b4bda8eec5e.png ../../_images/1f5723f0ecb114e3ec3221ddd5d9f2a430d09647c51a40ef9d5618ac8f068ade.png
Error: -1.139e-05+0j
../../_images/51fbdeed63caecbcd3651ba47bd52fece91601d67c0293f9413faa80acd2f8a8.png ../../_images/c02ed6b517c71643b32f28bdbd87ece641326f356143f58a939fde7420023e81.png
Error: -9.823e-06+0j
../../_images/96da1ee7e8b2a5d304356f5d6363da596457b466d2e9af7270632509f66b46d8.png ../../_images/65c3b00eccea115d8b853006c61253c1c05ac66dcf161783f4874ed7ee56b2bf.png
Error: -7.9428e-06+0j
../../_images/e55d131d80bd8ad6ea60fb0a8993c4d77cbea712702aa8c21e152a47af3e2d69.png