JE14: A DG scheme for Vlasov equation with fixed potential
Contents
In this document I test a discontinuous Galerkin (DG) scheme for the solution of the 1D Vlasov equation written as
where
The Hamiltonian takes the form 1
where
Note
The Lua programs implementing these simulations are quite complicated due to the fact that the moments and potential live on a 1D spatial grid while the distribution function itself lives on a 2D phase-space grid. This means that basis functions, fields and updaters need to be defined on both grids, with additional operators to go between them.
Problem 1: Free streaming
In the first test we set
Note that the exact solution to this equation is simply
i.e. for at each point in velocity space the initial distribution advects with a constant speed. However, even though the distribution function is manifestly undamped, its moments are damped. To see this pick an initial condition a Maxwellian 2
where
The increasingly oscillatory nature of the
which is exponentially damped.
Accuracy test
To test the ability of the algorithm to model this damping, a
simulation is initialized with a Maxwellian with
The results on a

Distribution function

Distribution function

Number density (black) in cell 2 as a function of time. The red dots show the exact solution. For this resolution the numerical solution is indistinguishable from the exact solution. See previous figure caption for other details.
Recurrence phenomena
The discrete velocity space grid combined with a lack of true physical
(or numerical) damping will lead to recurrence, i.e, the initial
conditions will recur almost exactly after a finite amount of
time. To see this the above simulation was run on a coarser mesh with

Number density (black) as a function of time with DG2 on 8 velocity cells [s144] (top left), DG2 on 16 velocity cells [s145] (top right), DG3 on 8 velocity cells [s146] (bottom left) and DG3 on 16 velocity cells [s147] (bottom right). The red line shows the exact solution. The recurrence is clearly visible in the second order scheme, and occurs later as the velocity grid is refined. Exact recurrence in the third-order scheme is not seen on this time-scale.
Problem 2: Particles in a potential well
In this set of problems the potential was held fixed and the distribution evolved. These cases correspond to the motion of test particles in a specified potential. In each case the initial distribution is assumed to be a uniform Maxwellian
with
where
A potential well
In this problem the potential is specified as
Simulations were run with a DG2 scheme on
a
In this potential the bounce period of a single particle depends on its initial energy. This is seen in the movie in which the particles with smaller total energy bounce faster.
Snapshots are shown at a

Distribution function at

Distribution function at
A quadratic potential well
In this problem the potential is specified as
Simulations were run with a DG2 scheme on a
These features are clearly seen in the movie which shows the correct bounce period. Also, it is seen that most of the particles are trapped and the distribution function “rotates rigidly” inside the trapped region.
Snapshots are shown at a

Distribution function at

Distribution function at
Conclusions
The ability of the discontinuous Galerkin Vlasov solver to handle free-streaming and fixed-potential problems is demonstrated. Recurrence is seen to occur due to a lack of true physical or numerical dissipation. The appropriate amount of such dissipation can be provided from (hyper) collisions and this needs to be implemented. One aim of this note was to ensure that all the moment and diagnostic updaters are working correctly. This is slightly tricky as one needs to go between 2D and 1D grids with different basis functions. Everything seems to be working as expected.
- 1
The Hamilitonian should be written in canonical coordinates as
where
is the particle momentum. However, for the simple case considered here the two definitions lead to the same dynamical equation for the distribution function.- 2
The form of the initial condition means that the distribution function is allowed to go negative. This is okay in this test problem, but for plasmas positivity of the distribution function is a required condition of physical realizability.