diff options
author | 2023-08-29 10:42:32 -0700 | |
---|---|---|
committer | 2023-08-29 10:42:32 -0700 | |
commit | bcbe86660a4e70b30ca7aa67231dd80debdfe525 (patch) | |
tree | 855db4a06af3a7e9d7532fff13f9cfe1f9977db3 /Python/pywarpx/picmi.py | |
parent | a118a2366ac74618e3726ea11fc84e793649a8e9 (diff) | |
download | WarpX-bcbe86660a4e70b30ca7aa67231dd80debdfe525.tar.gz WarpX-bcbe86660a4e70b30ca7aa67231dd80debdfe525.tar.zst WarpX-bcbe86660a4e70b30ca7aa67231dd80debdfe525.zip |
Fix: PICMI BTD Diags (#4248)
Typos.
Diffstat (limited to '')
-rw-r--r-- | Python/pywarpx/picmi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pywarpx/picmi.py b/Python/pywarpx/picmi.py index dfc90b7df..d5d00fb30 100644 --- a/Python/pywarpx/picmi.py +++ b/Python/pywarpx/picmi.py @@ -2245,7 +2245,7 @@ class LabFrameFieldDiagnostic(picmistandard.PICMI_LabFrameFieldDiagnostic, self.diagnostic.dt_snapshots_lab = self.dt_snapshots self.diagnostic.buffer_size = self.buffer_size - self.diagnostics.do_back_transformed_particles = self.write_species + self.diagnostic.do_back_transformed_particles = self.write_species # --- Use a set to ensure that fields don't get repeated. fields_to_plot = set() @@ -2338,7 +2338,7 @@ class LabFrameParticleDiagnostic(picmistandard.PICMI_LabFrameParticleDiagnostic, self.diagnostic.dt_snapshots_lab = self.dt_snapshots self.diagnostic.buffer_size = self.buffer_size - self.diagnostics.do_back_transformed_fields = self.write_fields + self.diagnostic.do_back_transformed_fields = self.write_fields self.set_write_dir() |