diff options
author | 2020-01-31 21:30:13 -0800 | |
---|---|---|
committer | 2020-01-31 21:30:13 -0800 | |
commit | 7af4917c442401e3f074350be7399b1d4998a8bd (patch) | |
tree | 625f5e38aa0b20728aa7a58ed781b227cf33f165 /Source/WarpX.cpp | |
parent | 3f5bcb4a798862e0a5aa604e5dce162bb0e291b3 (diff) | |
parent | 80b25cbee95fa96fc45e5f5a4728a27c20cdd387 (diff) | |
download | WarpX-7af4917c442401e3f074350be7399b1d4998a8bd.tar.gz WarpX-7af4917c442401e3f074350be7399b1d4998a8bd.tar.zst WarpX-7af4917c442401e3f074350be7399b1d4998a8bd.zip |
Merge pull request #417 from gtrichardson/QED_Hybrid_algorithm
QED Corrections to Maxwell's Equations (Hybrid)
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); |