diff options
author | 2020-01-31 22:26:16 -0800 | |
---|---|---|
committer | 2020-01-31 22:26:16 -0800 | |
commit | 15f002a11c867ca20f6a053eb3ccac62394f8f74 (patch) | |
tree | 9dc6c3c51e5d75ca3a9d464e11bd6451e9bd5371 /Source/WarpX.cpp | |
parent | 6651d1df96f67e162ced862093633e925cbc8133 (diff) | |
parent | 7af4917c442401e3f074350be7399b1d4998a8bd (diff) | |
download | WarpX-15f002a11c867ca20f6a053eb3ccac62394f8f74.tar.gz WarpX-15f002a11c867ca20f6a053eb3ccac62394f8f74.tar.zst WarpX-15f002a11c867ca20f6a053eb3ccac62394f8f74.zip |
Merge branch 'dev' into soa_to_aos
Diffstat (limited to 'Source/WarpX.cpp')
-rw-r--r-- | Source/WarpX.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/WarpX.cpp b/Source/WarpX.cpp index d93fab7df..3fe61274a 100644 --- a/Source/WarpX.cpp +++ b/Source/WarpX.cpp @@ -55,6 +55,7 @@ int WarpX::do_moving_window = 0; int WarpX::moving_window_dir = -1; Real WarpX::moving_window_v = std::numeric_limits<amrex::Real>::max(); +Real WarpX::quantum_xi = PhysConst::xi; Real WarpX::gamma_boost = 1.; Real WarpX::beta_boost = 0.; Vector<int> WarpX::boost_direction = {0,0,0}; @@ -341,6 +342,7 @@ WarpX::ReadParameters () pp.query("verbose", verbose); pp.query("regrid_int", regrid_int); pp.query("do_subcycling", do_subcycling); + pp.query("use_hybrid_QED", use_hybrid_QED); pp.query("exchange_all_guard_cells", exchange_all_guard_cells); pp.query("override_sync_int", override_sync_int); @@ -456,6 +458,8 @@ WarpX::ReadParameters () pp.query("n_current_deposition_buffer", n_current_deposition_buffer); pp.query("sort_int", sort_int); + pp.query("quantum_xi", quantum_xi); + pp.query("do_pml", do_pml); pp.query("pml_ncell", pml_ncell); pp.query("pml_delta", pml_delta); |