diff options
author | 2023-04-04 21:11:54 -0700 | |
---|---|---|
committer | 2023-04-04 21:11:54 -0700 | |
commit | 9069aaf8bda40b8b9e0ea37361723fdc8e0a9243 (patch) | |
tree | 92f59f567ac3f3f8015fc648dc56f5119f8c3d32 /Python/pywarpx/Amrex.py | |
parent | 3be23a1dc1e357bb2d2c873718df5b928fb6854d (diff) | |
download | WarpX-9069aaf8bda40b8b9e0ea37361723fdc8e0a9243.tar.gz WarpX-9069aaf8bda40b8b9e0ea37361723fdc8e0a9243.tar.zst WarpX-9069aaf8bda40b8b9e0ea37361723fdc8e0a9243.zip |
Adding Amrex Bucket into WarpX Python interface. (#3590)
* Adding Amrex Bucket into WarpX Python interface.
* Adding PICMI-like options in the Simulation class to control Amrex Arena parameters.
Diffstat (limited to 'Python/pywarpx/Amrex.py')
-rw-r--r-- | Python/pywarpx/Amrex.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Python/pywarpx/Amrex.py b/Python/pywarpx/Amrex.py new file mode 100644 index 000000000..4dab8225a --- /dev/null +++ b/Python/pywarpx/Amrex.py @@ -0,0 +1,9 @@ +# Copyright 2022 S. Eric CLark, LLNL +# +# This file is part of WarpX. +# +# License: BSD-3-Clause-LBNL + +from .Bucket import Bucket + +amrex = Bucket('amrex') |