aboutsummaryrefslogtreecommitdiff
path: root/Python/pywarpx/fields.py
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pywarpx/fields.py')
-rw-r--r--Python/pywarpx/fields.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/pywarpx/fields.py b/Python/pywarpx/fields.py
index 8db6f42c6..c4b0e29c6 100644
--- a/Python/pywarpx/fields.py
+++ b/Python/pywarpx/fields.py
@@ -747,15 +747,15 @@ def PhiFPWrapper(level=0, include_ghosts=False):
def FFPWrapper(level=0, include_ghosts=False):
return _MultiFABWrapper(direction=None,
- get_lovects=_libwarpx.get_mesh_F_field_fp_lovects,
- get_fabs=_libwarpx.get_mesh_F_field_fp,
+ get_lovects=_libwarpx.get_mesh_F_fp_lovects,
+ get_fabs=_libwarpx.get_mesh_F_fp,
get_nodal_flag=_libwarpx.get_F_nodal_flag,
level=level, include_ghosts=include_ghosts)
def GFPWrapper(level=0, include_ghosts=False):
return _MultiFABWrapper(direction=None,
- get_lovects=_libwarpx.get_mesh_G_field_fp_lovects,
- get_fabs=_libwarpx.get_mesh_G_field_fp,
+ get_lovects=_libwarpx.get_mesh_G_fp_lovects,
+ get_fabs=_libwarpx.get_mesh_G_fp,
get_nodal_flag=_libwarpx.get_G_nodal_flag,
level=level, include_ghosts=include_ghosts)