From fedca01aa44d4a1883f623601d11cf85fb353d2a Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Thu, 23 Mar 2023 10:51:18 -0700 Subject: PICMI Boundary: Silver-Mueller (#3709) * PICMI Boundary: Silver-Mueller Add support for silver-mueller boundary conditions in PICMI. * Dependencies: Update PICMI --- Python/pywarpx/picmi.py | 1 + Python/setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'Python') diff --git a/Python/pywarpx/picmi.py b/Python/pywarpx/picmi.py index 36dc1d0c7..90d4a256f 100644 --- a/Python/pywarpx/picmi.py +++ b/Python/pywarpx/picmi.py @@ -23,6 +23,7 @@ picmistandard.register_codename(codename) # dictionary to map field boundary conditions from picmistandard to WarpX BC_map = { 'open':'pml', 'dirichlet':'pec', 'periodic':'periodic', 'damped':'damped', + 'absorbing_silver_mueller':'absorbing_silver_mueller', 'neumann':'neumann', 'none':'none', None:'none' } diff --git a/Python/setup.py b/Python/setup.py index 16983392f..4e788b365 100644 --- a/Python/setup.py +++ b/Python/setup.py @@ -59,7 +59,7 @@ setup(name = 'pywarpx', package_dir = {'pywarpx': 'pywarpx'}, description = """Wrapper of WarpX""", package_data = package_data, - install_requires = ['numpy', 'picmistandard==0.0.22', 'periodictable'], + install_requires = ['numpy', 'picmistandard==0.23.2', 'periodictable'], python_requires = '>=3.7', zip_safe=False ) -- cgit v1.2.3