Grating coupler

Contents

Grating coupler#

Reproducing an example of [1]

from collections import OrderedDict

import matplotlib.pyplot as plt
import numpy as np
import shapely
from skfem import Basis, ElementDG, ElementTriP1
from skfem.io import from_meshio

from femwell.mesh import mesh_from_OrderedDict
from femwell.mode_solver_2d_periodic import plot_periodic, solve_periodic

height = 4
h1 = 0.26
h2 = 0.2
h3 = 0.02

a = 0.47
w1 = 0.1
w2 = 0.03
w3 = 0.15

pml = 2

k0 = 1.9 / a  # 1.05/a

left = shapely.LineString([(0, y) for y in np.linspace(-height, height, 2)])
right = shapely.LineString([(a, y) for y in np.linspace(-height, height, 2)])
top = shapely.LineString([(x, height) for x in np.linspace(0, a, 2)])
bottom = shapely.LineString([(x, -height) for x in np.linspace(0, a, 2)])

background = shapely.box(0, -height, a, height)
structure = shapely.Polygon(
    (
        (0, 0),
        (0, h3),
        (w1 / 2, h3),
        (w1 / 2, h1),
        (w1 / 2 + w2, h1),
        (w1 / 2 + w2, h2),
        (w1 / 2 + w2 + w3, h2),
        (w1 / 2 + w2 + w3, h1),
        (a - w1 / 2, h1),
        (a - w1 / 2, h3),
        (a, h3),
        (a, 0),
    )
)

resolutions = {"structure": {"resolution": 0.05, "distance": 0.5}}

mesh = from_meshio(
    mesh_from_OrderedDict(
        OrderedDict(
            left=left,
            right=right,
            top=top,
            bottom=bottom,
            structure=structure,
            background=background,
        ),
        resolutions=resolutions,
        filename="mesh.msh",
        default_resolution_max=0.07,
        periodic_lines=[("left", "right")],
    )
)

basis_epsilon_r = Basis(mesh, ElementDG(ElementTriP1()), intorder=4)

epsilon_r = basis_epsilon_r.zeros(dtype=np.complex64) + 1.45
epsilon_r[basis_epsilon_r.get_dofs(elements="structure")] = 3.5
epsilon_r **= 2
epsilon_r += basis_epsilon_r.project(
    lambda x: (4j) * (np.clip(np.abs(x[1]) - height + pml, 0, np.inf) / pml) ** 2,
    dtype=np.complex64,
)
basis_epsilon_r.plot(np.real(epsilon_r), ax=mesh.draw(), colorbar=True).show()
basis_epsilon_r.plot(np.imag(epsilon_r), ax=mesh.draw(), colorbar=True).show()

ks, basis_phi, phis = solve_periodic(basis_epsilon_r, epsilon_r, k0)


idx = (np.abs(np.imag(ks * a)) < 0.1) * (np.abs(np.real(ks * a)) < 7)
ks = ks[idx]
phis = phis[:, idx]

# print(ks)

# plt.plot(np.real(ks))
# plt.plot(np.imag(ks))
# plt.show()

for i, k in enumerate(ks):
    fig, axs = plt.subplots(1, 2, figsize=(13, 5), gridspec_kw={"width_ratios": [1, 10]})
    mesh.draw(ax=axs[0], boundaries=True, boundaries_only=True)
    basis_phi.plot(np.real(phis[..., i]), shading="gouraud", colorbar=True, ax=axs[0])
    axs[0].set_aspect(1)
    plt.title(f"{k*a}")
    # axs[0].set_aspect(1)
    plot_periodic(k, a, basis_phi, phis[..., i], 10, axs[1])
    plt.show()
../../_images/08b3aee9c05e958849027a658b696bc8c6e0e8793f190bac4ac9c3feeda6435c.png ../../_images/bbe053d9b3251d549f9ae69e593a8419458c11417fefc6d11e7311bcf140d514.png ../../_images/5062545c484c3699ed20c3b3b50f2c0a9ebf17d08eab8bce391d25974b2e6d30.png

Bibliography#

[1]

Jelena Notaros and Miloš A. Popović. Finite-difference complex-wavevector band structure solver for analysis and design of periodic radiative microphotonic structures. Optics Letters, 40(6):1053, March 2015. URL: https://doi.org/10.1364/ol.40.001053, doi:10.1364/ol.40.001053.