diff options
Diffstat (limited to 'Docs/source/running_cpp/parameters.rst')
-rw-r--r-- | Docs/source/running_cpp/parameters.rst | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/Docs/source/running_cpp/parameters.rst b/Docs/source/running_cpp/parameters.rst index c159509b4..7b2d2c0e6 100644 --- a/Docs/source/running_cpp/parameters.rst +++ b/Docs/source/running_cpp/parameters.rst @@ -723,14 +723,12 @@ Diagnostics and output * ``amr.plot_file`` (`string`) Root for output file names. Supports sub-directories. Default `diags/plotfiles/plt` -* ``warpx.plot_J_field`` (`0` or `1` optional; default `1`) - Whether to plot the current density. - -* ``warpx.plot_E_field`` (`0` or `1` optional; default `1`) - Whether to plot the electric field. - -* ``warpx.plot_B_field`` (`0` or `1` optional; default `1`) - Whether to plot the magnetic field. +* ``warpx.fields_to_plot`` (`list of strings`) + Fields written to plotfiles. Possible values: ``Ex`` ``Ey`` ``Ez`` + ``Bx`` ``By`` ``Bz`` ``jx`` ``jy`` ``jz`` ``part_per_cell`` ``rho`` + ``F`` ``part_per_grid`` ``part_per_proc`` ``divE`` ``divB``. + Default is + ``warpx_fields_to_plot = Ex Ey Ez Bx By Bz jx jy jz part_per_cell``. * ``slice.dom_lo`` and ``slice.dom_hi`` (`2 floats in 2D`, `3 floats in 3D`; in meters similar to the units of the simulation box.) The extent of the slice are defined by the co-ordinates of the lower corner (``slice.dom_lo``) and upper corner (``slice.dom_hi``). The slice could be 1D, 2D, or 3D, aligned with the co-ordinate axes and the first axis of the coordinates is x. For example: if for a 3D simulation, an x-z slice is to be extracted at y = 0.0, then the y-value of slice.dom_lo and slice.dom_hi must be equal to 0.0 @@ -743,8 +741,6 @@ Diagnostics and output The number of PIC cycles inbetween two consecutive data dumps for the slice. Use a negative number to disable slice generation and slice data dumping. - - Checkpoints and restart ----------------------- WarpX supports checkpoints/restart via AMReX. |