diff options
author | 2020-06-05 15:17:16 -0700 | |
---|---|---|
committer | 2020-06-05 15:17:16 -0700 | |
commit | fac75372811334bc0e04726eda8b25f627d90052 (patch) | |
tree | 19f188abbc2432f91068b45f29a38d45baf648d1 /Python/pywarpx/WarpX.py | |
parent | 19388ad3262beb6a6b632588c1bcb8b19244b6a5 (diff) | |
download | WarpX-fac75372811334bc0e04726eda8b25f627d90052.tar.gz WarpX-fac75372811334bc0e04726eda8b25f627d90052.tar.zst WarpX-fac75372811334bc0e04726eda8b25f627d90052.zip |
Updates to picmi, mostly related to fields, and add psatd (#1077)
Diffstat (limited to 'Python/pywarpx/WarpX.py')
-rw-r--r-- | Python/pywarpx/WarpX.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/pywarpx/WarpX.py b/Python/pywarpx/WarpX.py index 12afc4e15..ae48bfcf6 100644 --- a/Python/pywarpx/WarpX.py +++ b/Python/pywarpx/WarpX.py @@ -15,6 +15,7 @@ from .Interpolation import interpolation from .Lasers import lasers, lasers_list from . import Particles from .Particles import particles, particles_list +from .PSATD import psatd from .Diagnostics import diagnostics @@ -32,6 +33,7 @@ class WarpX(Bucket): argv += algo.attrlist() argv += langmuirwave.attrlist() argv += interpolation.attrlist() + argv += psatd.attrlist() # --- Search through species_names and add any predefined particle objects in the list. particles_list_names = [p.instancename for p in particles_list] |