Skip to content

Commit a9a171e

Browse files
Add a few abbreviations and terms to the glossary (#4143)
* add several abbreviations and terms to the glossary * Apply suggestions from code review Co-authored-by: Luca Fedeli <[email protected]> --------- Co-authored-by: Luca Fedeli <[email protected]>
1 parent 241b3f4 commit a9a171e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

Docs/source/glossary.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,14 @@ Abbreviations
2222
* **CI:** continuous integration, automated tests that we perform before a proposed code-change is accepted; see PR
2323
* **CPU:** `central processing unit <https://en.wikipedia.org/wiki/Central_processing_unit>`__, we usual mean a socket or generally the host-side of a computer (compared to the accelerator, e.g. GPU)
2424
* **DOE:** `The United States Department of Energy <https://en.wikipedia.org/wiki/United_States_Department_of_Energy>`__, the largest sponsor of national laboratory research in the United States of America
25+
* **DSMC:** `Direct Simulation Monte Carlo <https://en.wikipedia.org/wiki/Direct_simulation_Monte_Carlo>`__, a method to capture collisions between kinetic particles
2526
* **ECP:** `Exascale Computing Project <https://www.exascaleproject.org>`__, a :ref:`U.S. DOE funding source <funding>` that supports WarpX development
2627
* **ECT:** `Enlarged Cell Technique <https://ieeexplore.ieee.org/document/4463918>`__, an electromagnetic solver with accurate resolution of perfectly conducting embedded boundaries
2728
* **EB:** embedded boundary, boundary conditions inside the simulation box, e.g. following material surfaces
2829
* **EM:** electromagnetic, e.g. EM PIC
2930
* **ES:** electrostatic, e.g. ES PIC
3031
* **FDTD:** `Finite-difference time-domain or Yee's method <https://en.wikipedia.org/wiki/Finite-difference_time-domain_method>`__, a class of grid-based finite-difference field solvers
32+
* **FRC:** `Field Reversed Configuration <https://en.wikipedia.org/wiki/Field-reversed_configuration>`__, an approach of magnetic confinement fusion
3133
* **GPU:** originally graphics processing unit, now used for fast `general purpose computing (GPGPU) <https://en.wikipedia.org/wiki/Graphics_processing_unit#Stream_processing_and_general_purpose_GPUs_(GPGPU)>`__; also called (hardware) accelerator
3234
* **IO:** input/output, usually files and/or data
3335
* **IPO:** `interprocedural optimization <https://en.wikipedia.org/wiki/Interprocedural_optimization>`__, a collection of compiler optimization techniques that analyze the whole code to avoid duplicate calculations and optimize performance
@@ -36,7 +38,9 @@ Abbreviations
3638
* **LPI:** laser-plasma interaction (often for laser-solid physics) *or* laser-plasma instability (often in fusion physics), depending on context
3739
* **LTO:** `link-time optimization <https://en.wikipedia.org/wiki/Interprocedural_optimization#WPO_and_LTO>`__, program optimizations for file-by-file compilation that optimize object files before linking them together to an executable
3840
* **LWFA:** laser-wakefield acceleration (of electrons/leptons)
41+
* **MCC:** Monte-Carlo collisions wherein a kinetic species collides with a fluid species, for example used in glow discharge simulations
3942
* **MR:** mesh-refinement
43+
* **MS:** magnetostatic, e.g. MS PIC
4044
* **MVA:** magnetic-vortex acceleration (of protons/ions)
4145
* **NERSC:** `National Energy Research Scientific Computing Center <https://www.nersc.gov/>`__, a supercomputing center located in Berkeley, CA (USA)
4246
* **NSF:** the `National Science Foundation <https://en.wikipedia.org/wiki/National_Science_Foundation>`__, a large public agency in the United States of America, supporting research and education
@@ -65,8 +69,11 @@ Terms
6569
* **evolve:** this is a generic term to advance a quantity (same nomenclature in AMReX).
6670
For instance, ``WarpX::EvolveE(dt)`` advances the electric field for duration ``dt``, ``PhysicalParticleContainer::Evolve(...)`` does field gather + particle push + current deposition for all particles in ``PhysicalParticleContainer``, and ``WarpX::EvolveEM`` is the central ``WarpX`` function that performs 1 PIC iteration.
6771
* **Frontier:** an `Exascale supercomputer at OLCF <https://www.olcf.ornl.gov/frontier/>`__
72+
* **hybrid-PIC:** a plasma simulation scheme that combines fluid and kinetic approaches, with (usually) the electrons treated as a fluid and the ions as kinetic particles (see :ref:`theory-kinetic-fluid-hybrid-model`)
6873
* **laser:** most of the time, we mean a `laser pulse <https://en.wikipedia.org/wiki/Ultrashort_pulse>`__
69-
* **openPMD**: `Open Standard for Particle-Mesh Data Files <https://www.openPMD.org>`__, a community meta-data project for scientific data
74+
* **openPMD:** `Open Standard for Particle-Mesh Data Files <https://www.openPMD.org>`__, a community meta-data project for scientific data
75+
* **Ohm's law solver:** the logic that solves for the electric-field when using the hybrid-PIC algorithm
7076
* **Perlmutter:** a Berkeley Lab nobel laureate and a `Pre-Exascale supercomputer at NERSC <https://www.nersc.gov/systems/perlmutter/>`__
71-
* **plotfiles**: the internal binary format for data files in *AMReX*
77+
* **plotfiles:** the internal binary format for data files in *AMReX*
7278
* **Python:** a popular scripted `programming language <https://www.python.org>`__
79+
* **scraping:** a term often used to refer to the process of removing particles that have crossed into an embedded boundary or pass an absorbing domain boundary from the simulation

0 commit comments

Comments
 (0)