Usage details and the latest documentation can be found here
Please adhere to the guidelines from the Contributor Covenant listed in the Code of Conduct.
To install dependencies, run python3 setup.py install
from the base directory of the repository.
After this step, python3 run_nlepw.py
can be executed to run a simulation of a Non-Linear Electron Plasma Wave with collisions.
This will create a temporary directory for the simulation files. Once completed, MLFlow will move the simulation folder into a centralized datastore. This datastore can be accessed through a web-browser based UI provided by leveraging MLFlow.
To start the MLFlow UI server, type mlflow ui
into the terminal and then navigate to localhost:5000 in your web browser. The page will look like the following
Clicking into that run will show you
VlaPy is a 1-spatial-dimension, 1-velocity-dimension, Vlasov-Poisson-Fokker-Planck code written in Python.
The 1D-1V VPFP equation set solved here has been applied in research of laser-plasma interactions in the context of
inertial fusion, of plasma-based accelerators, of space physics, and of fundamental plasma physics (references
can be found in the manuscript). While there are VPFP software libraries which are available in academic settings,
research laboratories, and industry, the community has yet to benefit from a simple-to-read, open-source Python
implementation. This lack of capability is currently echoed in conversations within the PlasmaPy
community
(PlasmaPy
is a collection of open-source plasma physics resources). Our aim with VlaPy
is to take a step
towards filling this need for a research and educational tool in the open-source community.
VlaPy
is intended to help students learn fundamental concepts and help researchers discover novel physics and
applications in plasma physics, fluid physics, computational physics, and numerical methods. It is also designed to
provide a science-accessible introduction to industry and software engineering best-practices, including unit and
integrated testing, and extensible and maintainable code.
The details of the VlaPy
implementation are provided in the following sections.
The Vlasov-Poisson-Fokker-Planck system can be decomposed into 4 components.
The spatial advection operator is pushed using an exponential integrator. The system is periodic in x.
This operator is tested in the fully integrated tests to reproduce solutions of the 1D-1V Vlasov-Poisson system, namely, Landau damping.
The velocity advection operator is pushed using an exponential integrator. The system is periodic in v.
This operator is tested in the fully integrated tests to reproduce solutions of the 1D-1V Vlasov-Poisson system, namely, Landau damping.
The Poisson equation is solved pseudospectrally.
This solver is tested to reproduce analytical solutions to a periodic Poisson system.
The Fokker-Planck equation is solved using an implicit finite-difference scheme because of the need to perform a diffusion time-step.
This solver is tested to
- return df/dt = 0 if a Maxwell-Boltzmann distribution is provided as input
- conserve energy and density
- relax to a Maxwellian of the right temperature and without a drift velocity
All tests are performed in CircleCI. There are unit tests as well as integrated tests. One of the most fundamental plasma physics phenomenon is that described by Landau damping.
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.
We include validation against this phenomenon as an integrated test.
XArray enables a user-friendly interface to labeling multi-dimensional arrays along with a powerful and performant backend. Therefore, we use XArray (http://xarray.pydata.org/en/stable/) for a performant Pythonic storage mechanism that promises lazy loading and incremental writes (through some tricks).
We use MLFlow (https://mlflow.org/) for simulation management. This is typically used for managing machine-learning lifecycles but is perfectly suited for managing numerical simulations. We believe UI capability to manage simulations significantly eases the physicist's workflow.
There are more details about how the diagnostics for a particular type of simulation are packaged and provided to the run manager object. These will be described in time. One can infer these from the code as well.
Please see the guide in contribution guidelines for this project