HOME

TheInfoList



OR:

Plane wave expansion method (PWE) refers to a computational technique in
electromagnetics In physics, electromagnetism is an interaction that occurs between particles with electric charge. It is the second-strongest of the four fundamental interactions, after the strong force, and it is the dominant force in the interactions ...
to solve the
Maxwell's equations Maxwell's equations, or Maxwell–Heaviside equations, are a set of coupled partial differential equations that, together with the Lorentz force law, form the foundation of classical electromagnetism, classical optics, and electric circuits. Th ...
by formulating an
eigenvalue In linear algebra, an eigenvector () or characteristic vector of a linear transformation is a nonzero vector that changes at most by a scalar factor when that linear transformation is applied to it. The corresponding eigenvalue, often denot ...
problem out of the equation. This method is popular among the
photonic crystal A photonic crystal is an optical nanostructure in which the refractive index changes periodically. This affects the propagation of light in the same way that the structure of natural crystals gives rise to X-ray diffraction and that the ato ...
community as a method of solving for the
band structure In solid-state physics, the electronic band structure (or simply band structure) of a solid describes the range of energy levels that electrons may have within it, as well as the ranges of energy that they may not have (called ''band gaps'' or ...
(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 non-dispersive media.


Principles

Plane wave In physics, a plane wave is a special case of wave or field: a physical quantity whose value, at any moment, is constant through any plane that is perpendicular to a fixed direction in space. For any position \vec x in space and any time t, t ...
s are solutions to the homogeneous
Helmholtz equation In mathematics, the eigenvalue problem for the Laplace operator is known as the Helmholtz equation. It corresponds to the linear partial differential equation \nabla^2 f = -k^2 f, where is the Laplace operator (or "Laplacian"), is the eigenva ...
, 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. The electric or magnetic fields are expanded for each field component in terms of the
Fourier series A Fourier series () is a summation of harmonically related sinusoidal functions, also known as components or harmonics. The result of the summation is a periodic function whose functional form is determined by the choices of cycle length (or '' ...
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. \frac = \sum_^ K_m^ e^ E(\omega,\mathbf) = \sum_^ K_n^ e^ e^ with the Fourier series coefficients being the K numbers subscripted by m, n respectively, and the reciprocal lattice
vector Vector most often refers to: *Euclidean vector, a quantity with a magnitude and a direction *Vector (epidemiology), an agent that carries and transmits an infectious pathogen into another living organism Vector may also refer to: Mathematic ...
given by \mathbf. In real modeling, the range of components considered will be reduced to just \pm N_\max instead of the ideal, infinite wave. Using these expansions in any of the curl-curl relations like, \frac \nabla \times \nabla \times E(\mathbf,\omega) = \left( \frac \right)^2 E(\mathbf,\omega) and simplifying under assumptions of a source free, linear, and non-dispersive region we obtain the
eigenvalue In linear algebra, an eigenvector () or characteristic vector of a linear transformation is a nonzero vector that changes at most by a scalar factor when that linear transformation is applied to it. The corresponding eigenvalue, often denot ...
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: \frac = \sum_^ K_m^ e^ E(\omega,\mathbf) = \sum_^ K_n^ e^ e^ The constitutive eigenvalue equation we finally have to solve becomes, \sum_n = \frac K_^ This can be solved by building a matrix for the terms in the left hand side, and finding its eigenvalue and vectors. The eigenvalues correspond to the modal solutions, while the corresponding magnetic or electric fields themselves can be plotted using the Fourier expansions. The
coefficients In mathematics, a coefficient is a multiplicative factor in some term of a polynomial, a series, or an expression; it is usually a number, but may be any expression (including variables such as , and ). When the coefficients are themselves ...
of the field harmonics are obtained from the specific eigenvectors. The resulting band-structure obtained through the eigenmodes of this structure are shown to the right.


Example code

We can use the following code in
MATLAB MATLAB (an abbreviation of "MATrix LABoratory") is a proprietary multi-paradigm programming language and numeric computing environment developed by MathWorks. MATLAB allows matrix manipulations, plotting of functions and data, implementa ...
or
GNU Octave GNU Octave is a high-level programming language primarily intended for scientific computing and numerical computation. Octave helps in solving linear and nonlinear problems numerically, and for performing other numerical experiments using a lang ...
to compute the same band structure, % % solve the DBR photonic band structure for a simple % 1D DBR. air-spacing d, periodicity a, i.e, a > d, % we assume an infinite stack of 1D alternating eps_r, air layers % y-polarized, z-directed plane wave incident on the stack % periodic in the z-direction; % % parameters d = 8; % air gap a = 10; % total periodicity d_over_a = d / a; eps_r = 12.2500; % dielectric constant, like GaAs, % max F.S coefs for representing E field, and Eps(r), are Mmax = 50; % 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, freqs = []; for Kz = - pi / a:pi / (10 * a): + pi / a Q = zeros(2 * Mmax + 1); for x = 1:2 * Mmax + 1 for y = 1:2 * Mmax + 1 X = x - Mmax; Y = y - Mmax; kn = (1 - 1 / eps_r) * d_over_a .* sinc((X - Y) .* d_over_a) + ((X - Y)

0) * 1 / eps_r; Q(x, y) = (2 * pi * (Y - 1) / a + Kz) .^ 2 * kn; % -Mmax<=(Y-1)<=Mmax end end fprintf('Kz = %g\n', Kz) omega_c = eig(Q); omega_c = sort(sqrt(omega_c)); % important step freqs = reqs; omega_c.' end close figure hold on idx = 1; for idx = 1:length(- pi / a:pi / (10 * a): + pi / a) plot(- pi / a:pi / (10 * a): + pi / a, freqs(:, idx), '.-') end hold off xlabel('Kz') ylabel('omega/c') title(sprintf('PBG of 1D DBR with d/a=%g, Epsr=%g', d / a, eps_r))


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 In mathematics, the conjugate gradient method is an algorithm for the numerical solution of particular systems of linear equations, namely those whose matrix is positive-definite. The conjugate gradient method is often implemented as an iter ...
. For both generalized and normal eigenvalue problems, just a few band-index plots in the band-structure diagrams are required, usually lying on the brillouin zone edges. This corresponds to eigenmodes solutions using iterative techniques, as opposed to diagonalization of the entire matrix. The PWEM is highly efficient for calculating modes in periodic dielectric structures. Being a Fourier space method, it suffers from the
Gibbs phenomenon In mathematics, the Gibbs phenomenon, discovered by Available on-line at:National Chiao Tung University: Open Course Ware: Hewitt & Hewitt, 1979. and rediscovered by , is the oscillatory behavior of the Fourier series of a piecewise continuou ...
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.


Disadvantages

Sometimes spurious modes appear. Large problems scaled as ''O''(''n''3), with the number of the plane waves (''n'') used in the problem. This is both time consuming and complex in memory requirements. Alternatives include Order-N spectral method, and methods using Finite-difference time-domain (FDTD) which are simpler, and model transients. If implemented correctly, spurious solutions are avoided. It is less efficient when index contrast is high or when metals are incorporated. It cannot be used for scattering analysis. Being a Fourier-space method, Gibbs phenomenon affects the method's accuracy. This is particularly problematic for devices with high dielectric contrast.


See also

*
Photonic crystal A photonic crystal is an optical nanostructure in which the refractive index changes periodically. This affects the propagation of light in the same way that the structure of natural crystals gives rise to X-ray diffraction and that the ato ...
*
Computational electromagnetics Computational electromagnetics (CEM), computational electrodynamics or electromagnetic modeling is the process of modeling the interaction of electromagnetic fields with physical objects and the environment. It typically involves using computer ...
*
Finite-difference time-domain method Finite-difference time-domain (FDTD) or Yee's method (named after the Chinese American applied mathematician Kane S. Yee, born 1934) is a numerical analysis technique used for modeling computational electrodynamics (finding approximate solutions t ...
*
Finite element method The finite element method (FEM) is a popular method for numerically solving differential equations arising in engineering and mathematical modeling. Typical problem areas of interest include the traditional fields of structural analysis, heat ...
*
Maxwell's equations Maxwell's equations, or Maxwell–Heaviside equations, are a set of coupled partial differential equations that, together with the Lorentz force law, form the foundation of classical electromagnetism, classical optics, and electric circuits. Th ...


References

{{DEFAULTSORT:Plane Wave Expansion Method Computational science Electrodynamics Computational electromagnetics