Electron Scattering Algorithms
Numerical Solutions of the Schrödinger Equation¶
As discussed in Bound Systems: The Schrödinger Equation, the Schrödinger equation typically cannot be solved analytically in complex systems. Therefore, in order to perform electron scattering simulations, we must calculate numerical solutions of Equation (1.3) for electron waves. First, we define the De Broglie (1925) wavelength of a free electrons (corrected for relativistic effects) as
where is the Plank constant, is the speed of light, is the electron charge, and is the accelerating voltage applied to the electron. Using SI units for (1.1) will give the wavelength in units of meters. In practice we typically use length units of for all calculations, and therefore multiple this result by 1010.
Next, we define the electron-potential interaction constant as (the numerical values of these constants can be found in Unit conventions)
In our simulations, we will assume the -position coordinate of the wavefunction is alone sufficient to describe its propagation in both time and space. Starting from Equaton (1.3) and assuming steady-state conditions with , we replace with and separate the time dependence. This gives the time-independent Schrödinger equation:
where is the crystal potential, and is the total energy of the electron. Substituting and σ into the equation and rearranging in terms of the electron’s wavevector , we obtain:
This 3D time-independent Schrödinger equation serves as the foundation for deriving numerical electron scattering algorithms.
The Multislice Method¶
By a wide margin, the most common algorithm used for electron scattering simulations is the multislice method, first described by Cowley & Moodie (1957). In this method, we make two assumptions:
- The term in the Laplacian can be neglected, as the wavefunction’s variation along the -axis is much slower compared to its variation in the transverse directions.
- The longitudinal wavevector is much larger than the contributions from transverse components of the wavefunction, i.e., .
With these assumptions, we can substitute Equations (1.1) and (1.2) into Equation (1.4) to obtain Kirkland, 2020
where .
Equation (1.5) shows the overall numerical recipe we will use; when the wavefunction is at position , we will evaluate the operators on the right hand side over a distance to calculate the new wavefunction at position . Kirkland (2020) gives the formal operator solution to (1.5) as
Assuming is small, (1.6) can be simplified to
where
is a thin slice of the potential as described in Equation or . Unfortunately, even with the above approximations, Equation (1.7) cannot be solved in closed form due to the two non-commuting operators. Instead, we solve it numerically by using a split-step method, where we alternate between solving each operator independently. The steps of the multislice method are detailed below.
Steps of the Multislice Method¶
1. Atomic Coordinates¶
We first generate a set of atomic coordinates for our desired sample. The atomic coordinates are placed in a simulation cell, a rectangular cuboid where all edges vectors are apart. We assume the optic axis of the electron beam is along the axis. For each atom, we define the position, the atomic number, a thermal vibration parameter, and sometimes the occupancy. Ideally the atomic coordinates will be periodic in the plane, though this is not always possible.
2. Potential Slices¶
Next, we calculate the potential for the sample. We compute this potential numerically, either using the parameterization approach shown in or using a DFT calculation as described in . We divide the atomic potentials into slices, which are thin sections of the sample in the plane. Thinner slices will produce more accurate simulations, at the cost of longer computation times. Typical slice thicknesses for accurate simulations are 1--2 , equal to roughly the atomic spacing of most solid materials.
When using isolated atomic potentials, we can either take the infinite projected potential which places the full scattering cross-section of each into a single slice, or perform numerical integration of a finite 3D projected potential which allows the potential of each atom to be spread into multiple adjacent slices.
We can also add additional electrostatic or electromagnetic fields to the potential slices. Electrostatic fields can be produced by electric fields across the sample or excess charges or holes, and will produce the same phase shifts as the atomic potentials, described by Equation (1.5). The effect of both extrinsic and intrinsic magnetic fields can be calculated using the Aharonov–Bohm equation.
3. Initial Wavefunctions¶
Next, we define the intitial condition of the electron beam wavefunction , described in Wave Aberrations. In an ideal plane wave TEM or diffraction pattern simulation, we use only a single initial wavefunction. We can also include spatial coherence in a TEM simulation by performing a multislice simulation where the initial probe is tilted to a range of incident probe angles, which are then summed incoherently to generate the simulation output. For a STEM simulation, we may need to calculate thousands or even millions of initial conditions for the electron probe, as each unique STEM probe position requires another simulation.
4. Transmission Operator¶
Following Kirkland (2020), if we assume a slice is infinitesimal thickness, we can set the term from (1.7) to zero and obtain the solution
We see from this expression that as the electron wavefuncton passes through a given slice, it will pick up a forward phase shift proportional to . This first Born approximation is quite accurate for high accelerating voltages, for small-to-intermediate atomic number species, and for thin slices. However we may require a more accurate expansion and / or numerical slicing of individual atomic potentals when using very low accelerating voltages or for calculating scattering from high atomic number species.
5. Propagation Operator¶
Next, we need to propagate the electron wave from one slice to the next by using the propagation operator in Equation (1.7). We assume empty space between slices, setting in (1.7) to get
Setting and Taylor expanding this expression gives
Taking the 2D Fourier transform of both sides and using the fact that the x and y derivatives are orthogonal, we get
We can now write the final propagation operator by combining to get
If there are still remaining slices that the electron wave has not passed through, we alternate steps 4 and 5 until the prope wavefunction reaches the output surface of the sample, where it is referred to as the exit wave
.
6. Transfer Function¶
After we have calculated the exit wave, we then need to apply the effects of our microscope optics to this wave and reach the detector plane by using a modulation transfer function (MTF). The MTF could be very simple; for example, in either a TEM diffraction simulation or a typical STEM simulation, we assume that the detector is placed at the far field limit and that therefore we only need to Fourier transform the exit wave to reach the detector plane.
For a TEM imaging simulation, we typically use a contrast transfer function (CTF) for the MTF. The CTF can include aplanatic optical aberrations such as defocus, spherical aberration, astigmatism, and higher order coherent wave aberrations. It can also include more complex optical affects such as field distortion, image rotation, or planatic aberrations, where the aberrations vary as a function of position. The CTF equations are described in Wave Aberrations.
7. Detector Functions¶
Finally, we convert from the complex wavefunction to a real-valued detector measurement. This intensity measurement may be performed in real space for near-field imaging giving , or in Fourier space for far-field diffraction space measurements giving . The measured intensity for a pixelated detector is just the magnitude squared of the wavefunction or . To simulated an integrating detector intensity , such as those for BF or DF STEM measurements, we apply a detector function to our measured intensity using the expression
where is the position of the STEM probe, and is usually an array of zeroes and ones defining the detector shape.
Because we’re performing a simulation, we do not need to used a fixed detector geometry. We could instead define variable detectors such as a set of concentric annular ring detectors with a spacing , using the expression
where θ is the annular coordinate and is the radial coordinate for -space.
We will use the multislice method in the rest of this article, so you can proceed to Wave Aberrations, or read below for information on other simulation methods!
Bloch Wave Simulations¶
While the multislice method is widely used for electron scattering simulations due to its flexibility and scalability, the Bloch wave method provides an alternative approach that is especially efficient for small, periodic structures. The Bloch wave formalism leverages the translational symmetry of the crystal lattice to express the electron wavefunction as a sum of periodic Bloch states, significantly reducing computational effort for crystalline samples. This reduction in computational cost is possible because in a Bloch wave simulation, we only consider a small number of scattering vectors , or equivalently to a small number of scattering angles
The Bloch wave method is particularly advantageous for periodic systems, as it reduces the computational domain to a single unit cell and directly incorporates crystal symmetry. However, it is less suited for non-periodic systems or those with large-scale defects, where the multislice method is more appropriate. This approach requires careful numerical handling of eigenvalue decomposition and the summation over a sufficiently large number of reciprocal lattice vectors to ensure convergence.
Steps of the Bloch Wave Method¶
1. Bloch Wave Expansion¶
The electron wavefunction inside a crystal can be expressed as a linear combination of Bloch waves, , which satisfy the periodicity of the crystal potential:
where
where are the Bloch wavevectors, are the reciprocal lattice vectors, are coefficients describing the contribution of each plane wave to the Bloch wave. This expansion allows us to represent the electron wavefunction as a superposition of states that inherently respect the periodicity of the crystal.
2. Schrödinger Equation¶
We can rewrite Equation (1.4) as:
where we approximate the second -derivative term for high-energy electrons using . This approximation assumes the electron wavefunction is dominated by a plane wave propagating along with wavevector .
To separate the rapidly oscillating component of the wavefunction, we use the substitution , where represents a slowly varying envelope function. Substituting into the equation yields:
where is the total energy of the electron. This time-independent Schrödinger equation now describes the interaction of the electron wave with the crystal potential in all spatial directions. To account for the periodicity of the crystal lattice, we expand as a sum of Bloch waves:
where are reciprocal lattice vectors, and are the coefficients of the expansion. Similarly, the crystal potential is expressed as a Fourier series:
Substituting these expansions into the Schrödinger equation results in a set of coupled equations for the plane wave coefficients , which form the basis for Bloch wave simulations.
3. Eigenvalue Problem¶
Inserting the expansions into the Schrödinger equation yields:
By matching coefficients of , we obtain the eigenvalue equation:
where is the excitation error. We solve this set of linear equations to find the eigenvalues and eigenvectors , representing the Bloch wave propagation constants and coefficients.
4. Bloch Wave Propagation¶
The wavefunction at depth is expressed as:
where propagates according to:
The propagation constants determine how each Bloch wave evolves through the crystal.
5. Input Wavefunction¶
At the entrance surface (), the wavefunction at the entrance surface of the crystal is matched to the incident wavefunction just outside of the crystal ,
where represents the Fourier components of the input wavefunction. These Fourier components serve as the basis for expanding in terms of Bloch waves.
The expansion of into Bloch waves is achieved by determining the weighting coefficients , which describe the contribution of each Bloch wave to the input wavefunction. By solving:
we relate the Bloch wave expansion coefficients to the plane wave coefficients of the input wavefunction and the coupling coefficients , which describe the relationship between the plane wave and Bloch wave bases.
6. Output Wavefunction¶
At the exit surface (, corresponding to the crystal thickness ), the real-space wavefunction is expressed using the Bloch wave expansion. The wavefunction is given by:
where are the weighting coefficients determined by the input wavefunction, and are the Bloch wave coefficients that describe the periodic components of the wavefunction. The plane waves correspond to reciprocal lattice vectors , following the lattice periodicity. The term accounts for the propagation of each Bloch wave through the crystal thickness , with representing the eigenvalues that describe the wavevector components along .
Note in particular how the thickness modulates the contribution of each Bloch wave to the final wavefunction at the exit surface, and how the Bloch wave method can be used to quickly compute output wavefunctions for multiple crystal thicknesses.
- De Broglie, L. (1925). Recherches sur la théorie des quanta, Paris, 1924 (thèse de physique). Ann. de Physique, 3, 10–22.
- Cowley, J. M., & Moodie, A. F. (1957). The scattering of electrons by atoms and crystals. I. A new theoretical approach. Acta Crystallographica, 10(10), 609–619.
- Kirkland, E. J. (2020). Advanced Computing in Electron Microscopy, Third Edition. Springer Science & Business Media.