diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pywarpx/picmi.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Python/pywarpx/picmi.py b/Python/pywarpx/picmi.py index 257cadb9a..d73e954ef 100644 --- a/Python/pywarpx/picmi.py +++ b/Python/pywarpx/picmi.py @@ -533,7 +533,6 @@ class ElectromagneticSolver(picmistandard.PICMI_ElectromagneticSolver): self.psatd_current_correction = kw.pop('warpx_current_correction', None) self.psatd_update_with_rho = kw.pop('warpx_psatd_update_with_rho', None) self.psatd_do_time_averaging = kw.pop('warpx_psatd_do_time_averaging', None) - self.psatd_use_damp_fields_in_z_guard = kw.pop('warpx_use_damp_fields_in_z_guard', None) def initialize_inputs(self): @@ -549,7 +548,6 @@ class ElectromagneticSolver(picmistandard.PICMI_ElectromagneticSolver): pywarpx.psatd.current_correction = self.psatd_current_correction pywarpx.psatd.update_with_rho = self.psatd_update_with_rho pywarpx.psatd.do_time_averaging = self.psatd_do_time_averaging - pywarpx.psatd.use_damp_fields_in_z_guard = self.psatd_use_damp_fields_in_z_guard if self.grid.guard_cells is not None: pywarpx.psatd.nx_guard = self.grid.guard_cells[0] @@ -735,6 +733,7 @@ class Simulation(picmistandard.PICMI_Simulation): self.costs_heuristic_particles_wt = kw.pop('warpx_costs_heuristic_particles_wt', None) self.costs_heuristic_cells_wt = kw.pop('warpx_costs_heuristic_cells_wt', None) self.use_fdtd_nci_corr = kw.pop('warpx_use_fdtd_nci_corr', None) + self.amr_check_input = kw.pop('warpx_amr_check_input', None) self.inputs_initialized = False self.warpx_initialized = False @@ -772,6 +771,8 @@ class Simulation(picmistandard.PICMI_Simulation): pywarpx.particles.use_fdtd_nci_corr = self.use_fdtd_nci_corr + pywarpx.amr.check_input = self.amr_check_input + particle_shape = self.particle_shape for s in self.species: if s.particle_shape is not None: |