Optical waveguide modes

Optical waveguide modes#

Hide code cell source
from collections import OrderedDict

import matplotlib.pyplot as plt
import numpy as np
import shapely
import shapely.affinity
from scipy.constants import epsilon_0, speed_of_light
from shapely.ops import clip_by_rect
from skfem import Basis, ElementTriP0
from skfem.io.meshio import from_meshio

from femwell.maxwell.waveguide import compute_modes
from femwell.mesh import mesh_from_OrderedDict
from femwell.visualization import plot_domains

We describe the geometry using shapely. In this case it’s simple: we use a shapely.box for the waveguide. For the surrounding we buffer the core and clip it to the part below the waveguide for the box. The remaining buffer is used as the clad. For the core we set the resolution to 30nm and let it fall of over 500nm

wg_width = 2.5
wg_thickness = 0.3
core = shapely.geometry.box(-wg_width / 2, 0, +wg_width / 2, wg_thickness)
env = shapely.affinity.scale(core.buffer(5, resolution=8), xfact=0.5)

polygons = OrderedDict(
    core=core,
    box=clip_by_rect(env, -np.inf, -np.inf, np.inf, 0),
    clad=clip_by_rect(env, -np.inf, 0, np.inf, np.inf),
)

resolutions = dict(core={"resolution": 0.03, "distance": 0.5})

mesh = from_meshio(mesh_from_OrderedDict(polygons, resolutions, default_resolution_max=10))
mesh.draw().show()
../../_images/1906bff5e1ba8434b7e281e25c570f5808bc898e787a621e6f60daf623c16c1a.png

Let’s also plot the domains

plot_domains(mesh)
plt.show()
../../_images/8e2fd91684a181c31e3b8ce6a866619d7c69485eface7d6b9b3f7db63a90692e.png

On this mesh, we define the epsilon. We do this by setting domainwise the epsilon to the squared refractive index.

basis0 = Basis(mesh, ElementTriP0())
epsilon = basis0.zeros()
for subdomain, n in {"core": 1.9963, "box": 1.444, "clad": 1}.items():
    epsilon[basis0.get_dofs(elements=subdomain)] = n**2
basis0.plot(epsilon, colorbar=True).show()
../../_images/2d91240bf77938f3640fe820ac42f2456a8b41bd6bb54dcb002b4b1e4827bb01.png

And now we call compute_modes to calculate the modes of the waveguide we set up. As modes can have complex fields as soon as the epsilon gets complex, so we get a complex field for each mode. Here we show only the real part of the mode.

wavelength = 1.55

modes = compute_modes(basis0, epsilon, wavelength=wavelength, num_modes=2, order=2)
for mode in modes:
    print(f"Effective refractive index: {mode.n_eff:.4f}")
    mode.show("E", part="real", colorbar=True)
    mode.show("E", part="imag", colorbar=True)
Effective refractive index: 1.5996+0.0000j
../../_images/9eff6788bd0aeb86edeebb817404165c3a9764f03fd16a48fa186ef3aaa9d187.png ../../_images/83a83119518006516a05afe1abfc266387f5d2ee4d2f622613a025a4e3c96559.png
Effective refractive index: 1.5202+0.0000j
../../_images/d29173748447fda8119f2fbf47fd4b683a884bb4d1045ac2dc874b3143b55b37.png ../../_images/d657f9c59e1033d822fc00bb4395d898fc429d6e246b11301e5157651eaf93c8.png

The intensity can be plotted directly from the mode object +

modes[0].show("I", colorbar=True)
../../_images/a429a3fbee663c592b12628d86f87b45bedf33c8eb1e793ce55940b520a88bee.png

Now, let’s calculate with the modes: What percentage of the mode is within the core for the calculated modes?

powers_in_waveguide = []
confinement_factors_waveguide = []

for mode in modes:
    powers_in_waveguide.append(mode.calculate_power(elements="core"))
    confinement_factors_waveguide.append(mode.calculate_confinement_factor(elements="core"))
print(powers_in_waveguide)
print(confinement_factors_waveguide)
[(0.604909264262037+0j), (0.5754481622844256+0j)]
[(0.7520342958493351+0j), (0.7441578331749016+0j)]