diff options
Diffstat (limited to 'Source/WarpX.cpp')
-rw-r--r-- | Source/WarpX.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WarpX.cpp b/Source/WarpX.cpp index 3950ac924..9dcba8b7d 100644 --- a/Source/WarpX.cpp +++ b/Source/WarpX.cpp @@ -170,6 +170,7 @@ bool WarpX::do_dynamic_scheduling = true; int WarpX::do_electrostatic; Real WarpX::self_fields_required_precision = 1.e-11_rt; int WarpX::self_fields_max_iters = 200; +int WarpX::self_fields_verbosity = 2; int WarpX::do_subcycling = 0; int WarpX::do_multi_J = 0; @@ -549,6 +550,7 @@ WarpX::ReadParameters () if (do_electrostatic == ElectrostaticSolverAlgo::LabFrame) { queryWithParser(pp_warpx, "self_fields_required_precision", self_fields_required_precision); pp_warpx.query("self_fields_max_iters", self_fields_max_iters); + pp_warpx.query("self_fields_verbosity", self_fields_verbosity); // Note that with the relativistic version, these parameters would be // input for each species. } |