Solving the Vlasov Equation¶
The 1-spatial-dimension, 1-velocity-dimension (1D-1V) Vlasov equation describing the conservation of phase space is given by
The evolution of the phase space in time can be calculated by evolving the phase space in configuration space (i.e. in \(\hat{x}\)) as well as evolving the phase space in velocity space (i.e. \(\hat{v}_x\)). For information on the definitions, please refer to the Glossary.
We split the equation into two separate steps ala Strang [Str68], or Cheng-Knorr [CK76], Splitting. This enables treating each component as an Ordinary Differential Equation (ODE).
Time Integration¶
Because the Vlasov equation models chaotic nonlinear dynamics, it is important to conserve the Hamiltonian in order to be able to retrieve accurate solutions over long time-scales. VlaPy contains 2 implementations of symplectic integrators for the Spatial and Velocity Advection operators.
The first method is a simple Verlet, or Leapfrog, scheme given by
This is a second order method i.e. the truncation error scales as \(\mathcal{O}(\Delta t^2)\)
The fourth order implementation is based on the Position-Extended Forest-Ruth-Like (PEFRL) [OMF02] algorithm. Details on this implementation will be added soon.
Spatial Advection¶
The spatial advection operator is
In VlaPy, the domain is periodic in space. This constraint enables the use of Fourier decomposition methods such that the operator can be integrated pseudo-spectrally in space. Computing a Fourier Transform of the above equation gives the following ODE
The solution is obtained by discretizing the above in time and is given by
Computing the inverse Fourier transform of the above, and only keeping the real part, gives the evolved distribution function
This method is inspired by conversation and notes from Pierre Navaro (https://github.com/pnavaro). It is chosen for it’s simplicity as well as accuracy.
Velocity Advection¶
The velocity advection operator is
In VlaPy, the domain is assumed to be periodic in velocity. While this constraint is not fulfilled at the boundaries, i.e. the first derivative is not continuous across the boundary, the value of the distribution function, and it’s derivatives can be very small if \((|v_{min}|, v_{max}) > 6 v_{th}\).
This constraint enables the use of Fourier decomposition methods such that the operator can be integrated pseudo-spectrally in velocity-space. Computing a Fourier Transform of the above equation gives the following ODE
The solution is obtained by discretizing the above in time and is given by
Computing the inverse Fourier transform of the above, and only keeping the real part, gives the evolved distribution function
This method is inspired by conversation and notes from Pierre Navaro (https://github.com/pnavaro). It is chosen for it’s simplicity as well as accuracy.
Tests¶
One of the most fundamental plasma physics phenomenon is that described by Landau damping [Ryu99].
Plasmas can support electrostatic oscillations. The oscillation frequency is given by the electrostatic electron plasma wave (EPW) dispersion relation. When a wave of sufficiently small amplitude is driven at the resonant wave-number and frequency pairing, there is a resonant exchange of energy between the plasma and the electric field, and the electrons can damp the electric field.
In VlaPy, we verify that the damping rate is reproduced for a few different wave numbers. This is shown in notebooks/landau_damping.ipynb.
- Str68
Gilbert Strang. On the Construction and Comparison of Difference Schemes. SIAM Journal on Numerical Analysis, 5(3):506–517, sep 1968. doi:10.1137/0705041.
- CK76
C.Z Cheng and Georg Knorr. The integration of the vlasov equation in configuration space. Journal of Computational Physics, 22(3):330–351, nov 1976. doi:10.1016/0021-9991(76)90053-X.
- OMF02
I.P. Omelyan, I.M. Mryglod, and R. Folk. Optimized Forest–Ruth- and Suzuki-like algorithms for integration of motion in many-body systems. Computer Physics Communications, 146(2):188–202, jul 2002. arXiv:0110585, doi:10.1016/S0010-4655(02)00451-4.
- Ryu99
D D Ryutov. Landau damping: half a century with the great discovery. Plasma Physics and Controlled Fusion, 41(3A):A1–A12, 1999. doi:10.1088/0741-3335/41/3A/001.