-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,36 @@ | ||
# We have now moved this repo to https://github.com/NREL/vidyut3d | ||
# All additional developments are happening here and this repo will | ||
# will be deleted soon. | ||
# Vidyut | ||
<div align="center"> | ||
<img src="https://github.com/hsitaram/vidyut3d/blob/main/images/vidyut_image.png" alt="Vidyut Logo"> | ||
</div> | ||
|
||
## A plasma fluid solver for simulating low-temperature plasmas and plasma-mediated catalysis | ||
|
||
Vidyut is a massively-parallel plasma-fluid solver for low-temperature plasmas (LTPs) that supports both local field (LFA) and local mean energy (LMEA) approximations, as well as complex gas and surface-phase chemistry. The solver supports 2D and 3D domains, and uses AMReX's adaptive mesh refinement capabilities to increase the grid resolution around complex structures (e.g. streamer heads and sheaths) while maintaining a tractable problem size. Vidyut specializes in simulating various types of gas-phase discharges, as well as plasma/surface interactions and surface chemistry (e.g. for plasma-mediated catalysis applications). The solver also supports hybrid CPU/GPU parallelization strategies, and has demonstrated excellent scaling on various HPC architectures for problem sizes consisting of O(100 M) control volumes. | ||
|
||
## Models and Features | ||
|
||
- LFA and LMEA models for solving the plasma-fluid equations with a drift-diffusion approximation | ||
- Support for complex gas and surface-phase chemistry | ||
- Second order semi-implicit scheme that handles drift and reactive source terms explicitly, and diffusive sources implicitly | ||
- Parallelization via OpenMPI/MPICH and GPU Acceleration with CUDA (NVidia) and HIP (AMD) | ||
- Parallel I/O | ||
- Plotfile format supported by Amrvis, VisIt, ParaView and yt | ||
|
||
# Build instructions | ||
* gcc and an MPI library (openMPI/MPICH) for CPU builds. cuda-11.0 is also required for GPU builds | ||
* This tool depends on the AMReX library (https://github.com/AMReX-Codes/amrex) | ||
* Each example/run case must include a Prob.H, ProbParm.H, UserFunctions.H, and UserSources.H - see examples to get started | ||
* Navigate to the test/run case directory, and make sure the AMREX_HOME variable in the GNUMakefile is set to your AMReX repository | ||
* Build executable using the GNUMakefile (set USE_MPI and USE_CUDA=TRUE/FALSE depending on architecture and desired parallel execution) and run "make" | ||
* Several test cases can be found in the test directory for getting started using the code | ||
|
||
# Visualization instructions | ||
|
||
* The outputs for a case are in the form of AMReX plotfiles | ||
* These plot files can be open using AMReX grid reader in ParaView (see https://amrex-codes.github.io/amrex/docs_html/Visualization.html#paraview) | ||
* Alternatively visit can be used. see https://amrex-codes.github.io/amrex/docs_html/Visualization_Chapter.html | ||
|
||
|
||
# Acknowledgments | ||
|
||
This work was authored by the National Renewable Energy Laboratory (NREL) under software record SWR-24-101, operated by Alliance for Sustainable Energy, LLC, for the U.S. Department of Energy (DOE) under Contract No. DE-AC36-08GO28308. This work was supported by funding from DOE Laboratory Directed Research and Development (LDRD). The research was performed using computational resources sponsored by the Department of Energy's Office of Energy Efficiency and Renewable Energy and located at the National Renewable Energy Laboratory. |