diff options
author | 2021-07-01 21:50:30 -0700 | |
---|---|---|
committer | 2021-07-01 21:50:30 -0700 | |
commit | f44102d14f98f233f292d86fdfdd0ab33f08f43c (patch) | |
tree | b4ae27d186d211ec08966d9d9f0f652c84787fe5 /Docs/source/usage/parameters.rst | |
parent | a79985f83a2486e35bc28f2d580f7fe4a2c802f2 (diff) | |
download | WarpX-f44102d14f98f233f292d86fdfdd0ab33f08f43c.tar.gz WarpX-f44102d14f98f233f292d86fdfdd0ab33f08f43c.tar.zst WarpX-f44102d14f98f233f292d86fdfdd0ab33f08f43c.zip |
Filter Always ON by Default (#2031)
* Filter Always ON by Default
* Fix CI Tests
* Update Docs
* Fix CI Test dirichletbc
* Default WarpX::use_filter = 0 with RZ FDTD, Add Warnings
* Set WarpX::use_kspace_filter = true by Default, too
* RZ: Fix Bug with PSATD Binary and FDTD Runtime Solver
* Default use_kspace_filter = true, Fix Runtime Issue with Rho Functor
Diffstat (limited to 'Docs/source/usage/parameters.rst')
-rw-r--r-- | Docs/source/usage/parameters.rst | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Docs/source/usage/parameters.rst b/Docs/source/usage/parameters.rst index 80e012c5d..024f6e35e 100644 --- a/Docs/source/usage/parameters.rst +++ b/Docs/source/usage/parameters.rst @@ -1156,11 +1156,15 @@ Numerics and algorithms and the Courant-Friedrichs-Lewy (CFL) limit. (e.g. for `warpx.cfl=1`, the timestep will be exactly equal to the CFL limit.) -* ``warpx.use_filter`` (`0 or 1`) - Whether to smooth the charge and currents on the mesh, after depositing - them from the macroparticles. This uses a bilinear filter - (see the :ref:`filtering section <theory-pic-filter>`). - When using the RZ spectral solver, the filtering is done in k-space. +* ``warpx.use_filter`` (`0` or `1`; default: `1`, except for RZ FDTD) + Whether to smooth the charge and currents on the mesh, after depositing them from the macro-particles. + This uses a bilinear filter (see the :ref:`filtering section <theory-pic-filter>`). + The default is `1` in all cases, except for simulations in RZ geometry using the FDTD solver. + With the RZ PSATD solver, the filtering is done in :math:`k`-space. + + .. warning:: + + Known bug: filter currently not working with FDTD solver in RZ geometry (see https://github.com/ECP-WarpX/WarpX/issues/1943). * ``warpx.filter_npass_each_dir`` (`3 int`) optional (default `1 1 1`) Number of passes along each direction for the bilinear filter. |