diff options
author | 2019-10-31 18:57:09 -0700 | |
---|---|---|
committer | 2019-10-31 18:57:09 -0700 | |
commit | 7e8f98b76a5c5ef33a1a409e43be9c72bc8d73ca (patch) | |
tree | b290ec615dbff0408711813022af6c291d3a8f64 /Source/Parallelization/GuardCellManager.cpp | |
parent | 82c791de01622ff1556203902c0782e396719629 (diff) | |
download | WarpX-7e8f98b76a5c5ef33a1a409e43be9c72bc8d73ca.tar.gz WarpX-7e8f98b76a5c5ef33a1a409e43be9c72bc8d73ca.tar.zst WarpX-7e8f98b76a5c5ef33a1a409e43be9c72bc8d73ca.zip |
do not update aux grids if PSATD
Diffstat (limited to '')
-rw-r--r-- | Source/Parallelization/GuardCellManager.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/Parallelization/GuardCellManager.cpp b/Source/Parallelization/GuardCellManager.cpp index 415a13c00..60a4a3d4f 100644 --- a/Source/Parallelization/GuardCellManager.cpp +++ b/Source/Parallelization/GuardCellManager.cpp @@ -144,4 +144,15 @@ guardCellManager::Init( // field solves. So ng_FieldGather must have enough cells // for the field solve too. ng_FieldGather = ng_FieldGather.max(ng_FieldSolver); + + Print()<<"ng_alloc_EB "<<ng_alloc_EB <<'\n'; + Print()<<"ng_alloc_J "<< ng_alloc_J<<'\n'; + Print()<<"ng_alloc_Rho "<<ng_alloc_Rho <<'\n'; + Print()<<"ng_alloc_F "<<ng_alloc_F <<'\n'; + Print()<<"ng_alloc_F_int "<<ng_alloc_F_int <<'\n'; + Print()<<"ng_FieldSolver "<<ng_FieldSolver <<'\n'; + Print()<<"ng_FieldGather "<<ng_FieldGather<<'\n'; + Print()<<"ng_UpdateAux "<<ng_UpdateAux <<'\n'; + Print()<<"ng_Extra "<<ng_Extra <<'\n'; + } |