Nonstandard FDTD Notes Preface
The notebook is divided into three parts: elementary, intermediate and advanced.
The beginner's chapter mainly introduces one-dimensional standard and non-standard FDTD theories.
The intermediate chapter will introduce the two-dimensional FDTD theory. The two-dimensional NS-FDTD theory improves the accuracy of solving Maxwell's equations by combining different finite difference models, which is one of the core of this method.
The advanced version will introduce the three-dimensional FDTD theory and apply it to conductive media (such as metals, plasmas, etc.) to study the propagation characteristics of electromagnetic waves in these materials.
Advantages of the NS-FDTD algorithm

Finite-difference time-domain (FDTD) is one of the most famous numerical algorithms for calculating electromagnetic wave propagation. The FDTD method can simulate structures of arbitrary shapes, nonlinear media, and can calculate the propagation of broadband electromagnetic waves. NS-FDTD reduces computing resources by optimizing the calculation of single-frequency waves, allowing higher-precision structures to be calculated with the same resource consumption. Using the NS-FDTD method, researchers have successfully and accurately simulated a special type of electromagnetic mode - Whispering Gallery Modes (WGM).
The whispering gallery mode refers to the phenomenon that electromagnetic waves or sound waves propagate near the inner wall of a circular, spherical or ring-shaped structure and circle around it many times without being easily scattered to the outside.
An intuitive example is that under the circular dome of St. Paul's Cathedral in London, if one person whispers softly on one side, another person on the other side, tens of meters away, can still hear it. This is because the sound waves propagate along the circular wall and stay on a specific path, thus reducing energy loss.
The traditional FDTD method often has large errors when calculating WGM, but the NS-FDTD method has higher accuracy, so the calculation results are closer to the theoretical values, as shown in the figure above.
(a) Figure: Analytical solution of Mie theory, used as a reference standard.
(b) Figure: Simulation results using the traditional FDTD method on a coarse grid deviate greatly from the theoretical values.
(c) Figure: Simulation using the NS-FDTD method on the same coarse grid. The results are highly consistent with the Mie theory and are significantly better than the traditional FDTD calculation results.
Beginner's Edition
First, we introduce the one-dimensional standard/non-standard FDTD theory. In computer simulation, additional considerations are required for numerical stability and boundary conditions.
1. Finite Difference Model
Many partial differential equations (PDEs) do not have analytical solutions, so they can only rely on numerical simulation. Finite difference method (FDM) is the most common numerical calculation method. The basic idea is to use differential expressions to approximate the solution of differential equations.
1.1 Forward Finite Difference (FFD)
To find the derivative of a one-dimensional function, first use Taylor Series Expansion to expand the function ()() at x+Δxx+Δx:
f(x+Δx)=f(x)+Δxdf(x)dx+Δx22!d2f(x)dx2+⋯,f(x+Δx)=f(x)+Δxdf(x)dx+Δx22!d2f(x)dx2+⋯,(1)
When is small enough, we can ignore the higher-order terms (i.e. Δx22!d2f(x)dx2+⋯ ), and only keep the first-order derivative terms. Finally, we can get:
df(x)dx≈f(x+Δx)–f(x)Δx.
Formula (2) is called the forward finite difference (FFD) approximation.
The term Δx22!d2f(x)dx2+⋯ is ignored in the Taylor expansion, so the truncation error is a first-order error, that is, O(Δx) .
1.2 Backward Finite Difference (BFD)
Similarly, the expansion of the function f(x) at x–Δx is:
f(x–Δx)=f(x)–Δxdf(x)dx+Δx22!d2f(x)dx2+⋯.
Easy to get:
df(x)dx≈f(x)–f(x−Δx)Δx.
The error is the same as above.
1.3 Central Finite Difference (CFD)
The previous two algorithms only use the current point and one adjacent point for calculation, so the accuracy is low. The center difference uses the two adjacent points before and after to improve the accuracy.
For the function f(x), subtract formula (1) from formula (3), eliminate the second-order derivative term, and obtain:
f(x+Δx)–f(x–Δx)=2Δxdfdx+O(Δx3).
Further sorting gives:
dfdx≈f(x+Δx)–f(x–Δx)2Δx.
Some textbooks use Δx/2 to replace Δx to obtain formula (7). The two are actually equivalent.
dfdx≈f(x+Δx/2)–f(x–Δx/2)Δx.
Both of the above formulas are called second-orderCentral finite differenceformula.
In addition, for the function f(x), adding formula (1) to formula (3) and eliminating the first-order derivative term, we can obtain:
f(x+Δ)+f(x−Δ)=2f(x)+Δx2d2fdx2+O(Δx4).
After sorting, we get:
d2fdx2≈f(x+Δx)–2f(x)+f(x–Δx)Δx2
1.4 Higher-Order Finite Difference
In the finite difference method, the calculation accuracy is improved by increasing the number of sampling points to obtain a higher-order difference formula.
In order to improve the accuracy, two additional sampling points x+2Δx,x–2Δx are added on the basis of the second-order central finite difference method, and Taylor expansion is performed here:
For the right-hand side points, the Taylor expansion is:
f(x+2Δx)=f(x)+2Δxdf(x)dx+2Δx2d2f(x)dx2+O(Δx3),
Similarly,
f(x–2Δx)=f(x)–2Δxdf(x)dx+2Δx2d2f(x)dx2+O(Δx3).
By linear combination (for example, inverting formula (11) and halving it, and adding the two formulas together), we can eliminate the high-order error terms and obtain:
d2f(x)dx2≈1Δx2[43(f(x+Δx)+f(x–Δx))–112(f(x+2Δx)+f(x–2Δx))–52f(x)+⋯].
This model uses four points and reduces the error by weighted averaging, but it brings potential problems such as numerical instability.
When we replace differential equations with higher-order finite differences, we introduce additional numerical solutions, called spurious solutions, which do not actually exist but are caused by the discretization properties of higher-order difference equations.
For example, a first-order differential equation such as dfdx=f(x) usually has one independent solution, a second-order differential equation such as the wave equation d2fdx2=k2f(x) usually has two independent solutions (two free parameters), a fourth-order differential equation will have four independent solutions, and so on.
In numerical calculations, if a fourth-order finite difference method is used to approximate a second-order differential equation, the end of the difference equation will be forcibly raised, resulting in additional spurious solutions. These additional solutions do not correspond to the original physical system.
In particular, the second-order differential wave equation describing electromagnetic wave propagation should be solved using the second-order central finite difference method rather than higher-order methods.
2. One-dimensional wave equation
To simulate the propagation of waves on a computer, numerical methods are needed for approximate calculations, among which the finite difference time domain method plays a powerful role.
The mathematical expression of the one-dimensional wave equation is:
∂2ψ∂t2=v2∂2ψ∂x2,
Where ψ(x,t) represents the amplitude of the wave, v is the speed of wave propagation (light in a vacuum is 3×108 m/s).
The physical meaning of this equation is that the change of waves is related to the change of time and space.
For an infinitely long wave medium, the solution is usually a traveling wave of a very simple form:
ψ(x,t)=Acos(kx–ωt)+Bsin(kx–ωt).
This situation applies to electromagnetic waves propagating in free space. For example, if the boundary is fixed, the traveling wave can be expanded by a sine function:
ψ(x,t)=∑nAnsin(knx)cos(ωnt).
However, if the boundary is irregular, such as electromagnetic waves reflecting on the ground, water waves hitting the coastline, sound waves propagating in multiple rooms, etc., it cannot be simply expanded into a sine or exponential form, and the analytical solution will be extremely complicated. For example, sound waves will have different reflection paths when they contact walls of different media, making it impossible to directly solve the propagation path of the sound waves.
Analytical solutions usually assume that the wave speed v is constant, that is, the wave propagates in a homogeneous medium. But in reality, waves travel through inhomogeneous media, such as sound waves that have different propagation speeds in rooms of different temperatures. In these cases, the wave equation becomes a variable coefficient partial differential equation, such as:
∂2ψ∂t2=v(x)2∂2ψ∂x2,
The speed v will change with the position x, which makes it impossible to directly use Fourier transform to obtain the analytical value.
Or there is an excitation source on the right side of the wave equation, that is, multiple waveforms may have different sources interfering with each other. In this case, it is also difficult to find an analytical solution.
And in the real world, the propagation of energy will cause losses, so it is necessary to introduce loss terms into the wave equation. At this time, the wave equation will become a nonlinear equation or a high-order differential equation, making it impossible to solve directly.
Therefore, we introduce the finite difference time domain method to solve these problems.
2.1 Standard FDTD algorithm
Since computers cannot directly calculate continuous mathematical equations, they needDiscretization, which divides space and time into grids, and then lets the computer gradually calculate the fluctuations of each grid.
In continuous form, the one-dimensional wave equation
∂2ψ∂t2=v2∂2ψ∂x2,
The equivalent form is
(∂2∂t2–v2∂2∂x2)ψ(x,t)=0.
Therefore, using the interval Δx to discretize space, each point is represented by the index ix=iΔx; using the interval Δt to discretize time, each moment is represented by the miniature nt=nΔt, where n are all integers. So the wave function is written as:
ψni=ψ(iΔx,nΔt).
The derivative of the wave function is then calculated using the central finite difference method.
The central finite difference approximation of the second-order partial derivative functions in time and space directions is
∂2ψ∂t2≈ψn+1i–2ψni+ψn−1iΔt2,
∂2ψ∂x2≈ψni+1–2ψni+ψni−1Δx2.
where ψni+1 is the fluctuation value of the adjacent grid point on the right.
Substituting formula (7) and formula (8) into the wave equation (formula (1)), we obtain formula (9).
ψn+1i–2ψni+ψn−1iΔt2=v2ψni+1–2ψni+ψni−1Δx2,
After sorting out, we get the standard 1D FDTD calculation formula.1D standard finite difference time domain (FDTD) algorithm:
ψn+1i=2ψni–ψn−1i+(v2Δt2Δx2)(ψni+1–2ψni+ψni−1).
This formula depends on the calculation of the two step points before and after in time and space. In other words, the state of the current point is affected by the adjacent points.
2.2 Non-standard FDTD algorithm
In the standard FDTD method, the wave equation is discretized using central differences. However, this method hasNumerical dispersionProblem: There will be large errors when the grid is coarse.
The non-standard FDTD algorithm solves the above problems. NS-FDTD makes special treatment for monochromatic waves, ensuring accuracy even if the values are discrete.
First, suppose that we are studying a certain monochromatic wave
ψ(x,t)=ei(kx–ωt),
where k is the wave number (k=2π/λ) and ω is the angular frequency (ω=2πf).
The spatial differential of formula (11) in the continuous case is
∂ψ∂x=ikψ(x,t).
For example, if we use standard differences directly to calculate Δxψ(x,t), we get
Δxψ(x,t)=ψ(x+Δx,t)–ψ(x,t)=ei(kx–ωt)(eikΔx–1),
It is not consistent with the real differential. It can only be approximated when Δx is small enough. In other words, if the grid is coarse, the so-called error will occur.
NS-FDTD introduces the correction factor s(Δx) to minimize the error of the discrete operator
Δxψ(x,t)≈s(Δx)∂ψ(x,t)∂x.
This s(Δx) is determined by the phase change at Δx. For example, our goal is
Δxψ(x,t)=ψ(x+Δx,t)–ψ(x,t).
Then the error factor is derived from formulas (12), (13), (14), and (15):
$$
s(\Delta x)
=\frac{\Delta_x \psi(x,t)}{\partial_x \psi(x,t)}
\frac{e^{\,i\,k\,\Delta x} – 1}{i\,k\,\Delta x}
\times \Delta x
\frac{e^{ik\Delta x} – 1}{ik}.
\tag{16}
ByusingEuler′sformula,theerrorfactorissimplifiedto
s(\Delta x)
= \frac{2}{k}\,\sin!\Bigl(\frac{k\,\Delta x}{2}\Bigr)\,e^{\,i\,\frac{k\,\Delta x}{2}} .
\tag{17}
$$
Note that when Δx→0, the nonstandard difference degenerates back to the case of "standard central difference", which is almost consistent with the true derivative approximation. In fact, formula (17) contains two parts: phase factor and amplitude, the former corresponds to the exponential part.
Similarly, the correction function in the time direction is derived
s(Δt)=2ωsin(ωΔt2)e−iωΔt/2.
To summarize, we start with the wave equation, discretize space and time, approximate it with the central difference, and then introduce the correction function (the exponential term of the correction function is actually handled implicitly)
ψn+1i–2ψni+ψn−1i(2ωsin(ωΔt/2))2=v2ψni+1–2ψni+ψni−1(2ksin(kΔx/2))2.
After sorting, we get
ψn+1i=−ψn−1i+(2+u2NSd2x)ψni,
in
uNS=sin(ωΔt/2)sin(kΔx/2).
3. One-dimensional FDTD stability
When doing numerical simulation, we hope that the time step Δt is as large as possible to reduce the total number of calculation steps, but it cannot exceed a certain limit, otherwise the numerical solution will diverge. How is this limit derived?
Leave a Reply