Content deleted Content added
Add banner {{Cleanup bare URLs}}. After at least 7 passes by @Citation bot since 20220802 + more before then, this article still has 1 untagged bare URL ref |
m v2.05b - Bot T20 CW#61 - Fix errors for CW project (Reference before punctuation) |
||
(9 intermediate revisions by 5 users not shown) | |||
Line 1:
{{Short description|Technique in computational electromagnetism}}
{{Use American English|date=January 2019}}
▲{{Use American English|date=January 2019}}'''Plane wave expansion method''' (PWE) refers to a computational technique in [[electromagnetics]] to solve the [[Maxwell's equations]] by formulating an [[eigenvalue]] problem out of the equation. This method is popular among the [[photonic crystal]] community as a method of solving for the [[band structure]] (dispersion relation) of specific photonic crystal geometries. PWE is traceable to the analytical formulations, and is useful in calculating modal solutions of Maxwell's equations over an inhomogeneous or periodic geometry. It is specifically tuned to solve problems in a time-harmonic forms, with [[Dispersion (optics)|non-dispersive]] media.
==Principles==
{{Dubious|date=August 2009}}
[[Plane wave]]s are solutions to the homogeneous [[Helmholtz equation]], and form a basis to represent fields in the periodic media. PWE as applied to photonic crystals as described is primarily sourced from Dr. Danner's tutorial.<ref>{{Cite web |last=Danner |first=Aaron J. |date=2011-01-31 |title=An introduction to the plane wave expansion method for calculating photonic crystal band diagrams |url=https://www.ece.nus.edu.sg/stfpage/eleadj/planewave.htm |url-status=live |archive-url=https://web.archive.org/web/20220615161702/https://www.ece.nus.edu.sg/stfpage/eleadj/planewave.htm |archive-date=2022-06-15 |access-date=2022-09-29 |website=Aaron Danner - NUS}}</ref>
The electric or magnetic fields are expanded for each field component in terms of the [[Fourier series]] components along the reciprocal lattice vector. Similarly, the dielectric permittivity (which is periodic along reciprocal lattice vector for photonic crystals) is also expanded through Fourier series components.
<math display="block">\frac{1}{\epsilon_r} = \sum_{m=-\infty}^{+\infty} K_m^{\epsilon_r} e^{-i \mathbf{G} \cdot \mathbf{r}}</math>
<math display="block">E(\
with the Fourier series coefficients being the K numbers subscripted by m, n respectively, and the reciprocal lattice [[Vector (mathematics and physics)|vector]] given by <math>\
E(\omega,\vec{r}) = \sum_{n=-\infty}^{+\infty} K_n^{E_y} e^{-i\vec{G}.\vec{r}} e^{-i\vec{k}\vec{r}}▼
▲with the Fourier series coefficients being the K numbers subscripted by m, n respectively, and the reciprocal lattice [[Vector (mathematics and physics)|vector]] given by <math>\vec{G}</math>. In real modeling, the range of components considered will be reduced to just <math>\pm Nmax</math> instead of the ideal, infinite wave.
Using these expansions in any of the curl-curl relations like,
<math display="block">\frac{1}{\epsilon(\
and simplifying under assumptions of a source free, linear, and non-dispersive region we obtain the [[
▲\frac{1}{\epsilon(\vec{r})} \nabla \times \nabla \times E(\vec{r},\omega) = \left( \frac{\omega}{c} \right)^2 E(\vec{r},\omega)
▲and simplifying under assumptions of a source free, linear, and non-dispersive region we obtain the [[eigen value]] relations which can be solved.
==Example for 1D case==
For a y-polarized z-propagating electric wave, incident on a 1D-DBR periodic in only z-direction and homogeneous along x,y, with a lattice period of a. We then have the following simplified relations:▼
[[Image:Photonic Crystal 1D DBR aircore epsr12point25 DbyA0point8.png|thumb|right|Band structure of a 1D Photonic Crystal, DBR air-core calculated using plane wave expansion technique with 101 planewaves, for d/a=0.8, and dielectric contrast of 12.250.]]
▲For a y-polarized z-propagating electric wave, incident on a 1D-DBR periodic in only z-direction and homogeneous along x,y, with a lattice period of a. We then have the following simplified relations:
<math display="block">\frac{1}{\epsilon_r} = \sum_{m=-\infty}^{+\infty} K_m^{\epsilon_r} e^{-i \frac{2\pi m}{a}z}</math>
▲<math display="block">E(\omega,\
The constitutive
<math display="block">\sum_n{\left( \frac{2\pi n}{a} + k_z \right)\left( \frac{2\pi m}{a} + k_z \right) K_{m-n}^{\epsilon_r} K_{n}^{E_y}} = \frac{\omega^2}{c^2} K_{m}^{E_y}</math>▼
▲\sum_n{\left( \frac{2\pi n}{a} + k_z \right)\left( \frac{2\pi m}{a} + k_z \right) K_{m-n}^{\epsilon_r} K_{n}^{E_y}} = \frac{\omega^2}{c^2}K_{m}^{E_y}
This can be solved by building a matrix for the terms in the left hand side, and finding its
The resulting band-structure obtained through the
===Example code===
Line 82 ⟶ 64:
% Q matrix is non-symmetric in this case, Qij != Qji
% Qmn = (2*pi*n + Kz)^2*Km-n
% Kn = delta_n / eps_r + (1 - 1/eps_r) (d/a) sinc(pi.n.d/a)
% here n runs from -Mmax to + Mmax,
Line 97 ⟶ 79:
end
omega_c = eig(Q);
omega_c = sort(sqrt(omega_c)); % important step
freqs = [freqs; omega_c.'];
end
close
figure
hold on
idx = 1;
Line 120 ⟶ 102:
==Advantages==
PWE expansions are rigorous solutions. PWE is extremely well suited to the modal solution problem. Large size problems can be solved using iterative techniques like [[Conjugate gradient method]].
For both generalized and normal
The PWEM is highly efficient for calculating modes in periodic dielectric structures. Being a Fourier space method, it suffers from the [[Gibbs phenomenon]] and slow convergence in some configuration when fast Fourier factorization is not used. It is the method of choice for calculating the band structure of photonic crystals. It is not easy to understand at first, but it is easy to implement.
Line 126 ⟶ 108:
==Disadvantages==
{{Dubious|date=August 2009}}
Sometimes spurious modes appear. Large problems scaled as ''O''(''n''<sup>3</sup>)
Alternatives include Order-N spectral method, and methods using [[Finite-difference time-___domain]] (FDTD) which are simpler, and model transients.
|