diff options
author | 2021-08-16 13:51:53 -0700 | |
---|---|---|
committer | 2021-08-16 13:51:53 -0700 | |
commit | d396341788756a4bfd2581b6fce24d4f87ece883 (patch) | |
tree | 21ec43a4faa69250b63e2706cbbe277b4ef06133 /Python/pywarpx/picmi.py | |
parent | dc61a6a7fe35fe887ca9f323f72eadad6b1c1963 (diff) | |
download | WarpX-d396341788756a4bfd2581b6fce24d4f87ece883.tar.gz WarpX-d396341788756a4bfd2581b6fce24d4f87ece883.tar.zst WarpX-d396341788756a4bfd2581b6fce24d4f87ece883.zip |
do_pml should not be parsed anymore. (#2183)
* do_pml not parsed. remove code that was added to support both types of boundary interface
* add paranthesis
* fix eol and move to BackwardCompatibility
* missing semicolon
* Update Source/WarpX.cpp
* clean input files in examples
* delete do_pml in performance test input
* fixing an example input file in docs
* Update Source/WarpX.cpp
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
* cleaning up docs
* Update Docs/source/usage/parameters.rst
* fix eol
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
Diffstat (limited to 'Python/pywarpx/picmi.py')
-rw-r--r-- | Python/pywarpx/picmi.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/pywarpx/picmi.py b/Python/pywarpx/picmi.py index aab135231..3f483c8b6 100644 --- a/Python/pywarpx/picmi.py +++ b/Python/pywarpx/picmi.py @@ -525,7 +525,6 @@ class ElectromagneticSolver(picmistandard.PICMI_ElectromagneticSolver): def init(self, kw): assert self.method is None or self.method in ['Yee', 'CKC', 'PSATD'], Exception("Only 'Yee', 'CKC', and 'PSATD' are supported") - self.do_pml = kw.pop('warpx_do_pml', None) self.pml_ncell = kw.pop('warpx_pml_ncell', None) if self.method == 'PSATD': @@ -539,7 +538,6 @@ class ElectromagneticSolver(picmistandard.PICMI_ElectromagneticSolver): self.grid.initialize_inputs() - pywarpx.warpx.do_pml = self.do_pml pywarpx.warpx.pml_ncell = self.pml_ncell pywarpx.warpx.do_nodal = self.l_nodal |