diff options
author | 2019-05-08 16:21:18 -0400 | |
---|---|---|
committer | 2019-05-08 16:21:18 -0400 | |
commit | eb76cadbc5e76111679f6189e6728e462af41f66 (patch) | |
tree | 4e797f1efff6703108b2d4fdd155eab3f1131655 /Source/Parallelization/WarpXComm.cpp | |
parent | 9f99d4f819c7760d174c8888134496bdee5b03f0 (diff) | |
download | WarpX-eb76cadbc5e76111679f6189e6728e462af41f66.tar.gz WarpX-eb76cadbc5e76111679f6189e6728e462af41f66.tar.zst WarpX-eb76cadbc5e76111679f6189e6728e462af41f66.zip |
temporary print files for debugging
Diffstat (limited to 'Source/Parallelization/WarpXComm.cpp')
-rw-r--r-- | Source/Parallelization/WarpXComm.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/Parallelization/WarpXComm.cpp b/Source/Parallelization/WarpXComm.cpp index 28971eb0c..23d97133b 100644 --- a/Source/Parallelization/WarpXComm.cpp +++ b/Source/Parallelization/WarpXComm.cpp @@ -221,7 +221,9 @@ WarpX::FillBoundaryE () { for (int lev = 0; lev <= finest_level; ++lev) { + amrex::Print() << " lev " << lev << " in fill bndry E \n"; FillBoundaryE(lev); + amrex::Print() << " lev " << lev << " after fill bndry E \n"; } } @@ -245,7 +247,7 @@ void WarpX::FillBoundaryE (int lev, PatchType patch_type) { if (patch_type == PatchType::fine) - { + { if (do_pml && pml[lev]->ok()) { pml[lev]->ExchangeE(patch_type, @@ -270,9 +272,12 @@ WarpX::FillBoundaryE (int lev, PatchType patch_type) pml[lev]->FillBoundaryE(patch_type); } + amrex::Print() << " before defining multifab \n"; const auto& cperiod = Geom(lev-1).periodicity(); Vector<MultiFab*> mf{Efield_cp[lev][0].get(),Efield_cp[lev][1].get(),Efield_cp[lev][2].get()}; + amrex::Print() << " before amrex fill bndry \n"; amrex::FillBoundary(mf, cperiod); + amrex::Print() << " after amrex fill bndry \n"; } } |