aboutsummaryrefslogtreecommitdiff
path: root/Python/pywarpx/picmi.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Python/pywarpx/picmi.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Python/pywarpx/picmi.py b/Python/pywarpx/picmi.py
index 975bb3808..dbdebf452 100644
--- a/Python/pywarpx/picmi.py
+++ b/Python/pywarpx/picmi.py
@@ -1963,6 +1963,14 @@ class FieldDiagnostic(picmistandard.PICMI_FieldDiagnostic, WarpXDiagnosticBase):
warpx_dump_rz_modes: bool, optional
Flag whether to dump the data for all RZ modes
+
+ warpx_lower_bound: vector of floats, optional
+ Lower corner of output fields
+ that is passed to <diagnostic name>.lower_bound
+
+ warpx_upper_bound: vector of floats, optional
+ Upper corner of output fields
+ that is passed to <diagnostic name>.upper_bound
"""
def init(self, kw):
@@ -1976,6 +1984,8 @@ class FieldDiagnostic(picmistandard.PICMI_FieldDiagnostic, WarpXDiagnosticBase):
self.file_prefix = kw.pop('warpx_file_prefix', None)
self.file_min_digits = kw.pop('warpx_file_min_digits', None)
self.dump_rz_modes = kw.pop('warpx_dump_rz_modes', None)
+ self.lower_bound = kw.pop('warpx_lower_bound', None)
+ self.upper_bound = kw.pop('warpx_upper_bound', None)
def initialize_inputs(self):