From 8a94eef4d68d1721658dcb9f1d443e6fcfc69dba Mon Sep 17 00:00:00 2001 From: Remi Lehe Date: Fri, 28 Oct 2022 08:58:34 -0700 Subject: Add neumann BC in WarpX PICMI interface (#3487) --- Python/pywarpx/picmi.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Python/pywarpx/picmi.py') diff --git a/Python/pywarpx/picmi.py b/Python/pywarpx/picmi.py index 3005b06bd..1c6ad317d 100644 --- a/Python/pywarpx/picmi.py +++ b/Python/pywarpx/picmi.py @@ -22,7 +22,8 @@ picmistandard.register_codename(codename) # dictionary to map field boundary conditions from picmistandard to WarpX BC_map = { - 'open':'pml', 'dirichlet':'pec', 'periodic':'periodic', 'damped':'damped', 'none':'none', None:'none' + 'open':'pml', 'dirichlet':'pec', 'periodic':'periodic', 'damped':'damped', + 'neumann':'neumann', 'none':'none', None:'none' } class constants: -- cgit v1.2.3