Plane Wave Expansion Method
   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 via electromagnetic fields. The electromagnetic force is one of the four fundamental forces of nature. It is the dominant force in the interacti ...
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, Electrical network, electr ...
by formulating an
eigenvalue In linear algebra, an eigenvector ( ) or characteristic vector is a vector that has its direction unchanged (or reversed) by a given linear transformation. More precisely, an eigenvector \mathbf v of a linear transformation T is scaled by a ...
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 Crystal structure, natural crystals gives rise to X-ray crystallograp ...
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 non-dispersive media (a reformulation of the method named Inverse dispersion allows frequency-dependent refractive indices).


Principles

Plane wave In physics Physics is the scientific study of matter, its Elementary particle, fundamental constituents, its motion and behavior through space and time, and the related entities of energy and force. "Physical science is that department of ...
s are solutions to the homogeneous
Helmholtz equation In mathematics, the Helmholtz equation is the eigenvalue problem for the Laplace operator. It corresponds to the elliptic partial differential equation: \nabla^2 f = -k^2 f, where is the Laplace operator, is the eigenvalue, and is the (eigen)fun ...
, 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 an Series expansion, expansion of a periodic function into a sum of trigonometric functions. The Fourier series is an example of a trigonometric series. By expressing a function as a sum of sines and cosines, many problems ...
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 * Disease vector, an agent that carries and transmits an infectious pathogen into another living organism Vector may also refer to: Mathematics a ...
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 is a vector that has its direction unchanged (or reversed) by a given linear transformation. More precisely, an eigenvector \mathbf v of a linear transformation T is scaled by a ...
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 involved in some term of a polynomial, a series, or any other type of expression. It may be a number without units, in which case it is known as a numerical factor. It may also be a ...
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, implementat ...
or
GNU Octave GNU Octave is a scientific programming language for scientific computing and numerical computation. Octave helps in solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly ...
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-semidefinite. The conjugate gradient method is often implemented as an it ...
. 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 is the oscillatory behavior of the Fourier series of a piecewise continuously differentiable periodic function around a jump discontinuity. The Nth partial Fourier series of the function (formed by summing ...
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 Crystal structure, natural crystals gives rise to X-ray crystallograp ...
* Computational electromagnetics * Finite-difference time-domain method *
Finite element method 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 tran ...
*
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, Electrical network, electr ...


References

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