diff options
-rw-r--r-- | tests/CurrentDeposition/main.cpp | 2 | ||||
-rw-r--r-- | tests/FieldGather/main.cpp | 2 | ||||
-rw-r--r-- | tests/FieldSolver/main.cpp | 2 | ||||
-rw-r--r-- | tests/ParticlePusher/main.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/CurrentDeposition/main.cpp b/tests/CurrentDeposition/main.cpp index 32b345f30..8210c832b 100644 --- a/tests/CurrentDeposition/main.cpp +++ b/tests/CurrentDeposition/main.cpp @@ -127,7 +127,7 @@ int main(int argc, char* argv[]) RealBox realbox{domain_box, dx, xyzmin}; int is_per[3] = {0,0,0}; Geometry geom{domain_box, &realbox, 0, is_per}; - std::string plotname{"plt00000"}; + std::string plotname{"plotfiles/plt00000"}; Vector<std::string> varnames{"jx", "jy", "jz"}; amrex::WriteSingleLevelPlotfile(plotname, plotmf, varnames, geom, 0.0, 0); } diff --git a/tests/FieldGather/main.cpp b/tests/FieldGather/main.cpp index 0ff98ff83..1e1841ca1 100644 --- a/tests/FieldGather/main.cpp +++ b/tests/FieldGather/main.cpp @@ -187,7 +187,7 @@ int main(int argc, char* argv[]) RealBox realbox{domain_box, dx, xyzmin}; int is_per[3] = {0,0,0}; Geometry geom{domain_box, &realbox, 0, is_per}; - std::string plotname{"plt00000"}; + std::string plotname{"plotfiles/plt00000"}; Vector<std::string> varnames{"Ex", "Ey", "Ez", "Bx", "By", "Bz"}; amrex::WriteSingleLevelPlotfile(plotname, plotmf, varnames, geom, 0.0, 0); } diff --git a/tests/FieldSolver/main.cpp b/tests/FieldSolver/main.cpp index caf44fed4..4c977ac27 100644 --- a/tests/FieldSolver/main.cpp +++ b/tests/FieldSolver/main.cpp @@ -219,7 +219,7 @@ int main(int argc, char* argv[]) RealBox realbox{cc_domain, dx, xyzmin}; int is_per[3] = {0,0,0}; Geometry geom{cc_domain, &realbox, 0, is_per}; - std::string plotname{"plt00000"}; + std::string plotname{"plotfiles/plt00000"}; Vector<std::string> varnames{"Ex", "Ey", "Ez", "Bx", "By", "Bz"}; amrex::WriteSingleLevelPlotfile(plotname, plotmf, varnames, geom, 0.0, 0); } diff --git a/tests/ParticlePusher/main.cpp b/tests/ParticlePusher/main.cpp index 8bf87d5eb..4df85b81c 100644 --- a/tests/ParticlePusher/main.cpp +++ b/tests/ParticlePusher/main.cpp @@ -110,7 +110,7 @@ int main(int argc, char* argv[]) RealBox realbox{plotbox, dx, xyzmin}; int is_per[3] = {0,0,0}; Geometry geom{plotbox, &realbox, 0, is_per}; - std::string plotname{"plt00000"}; + std::string plotname{"plotfiles/plt00000"}; Vector<std::string> varnames{"x", "y", "z", "ux", "uy", "uz", "gamma"}; amrex::WriteSingleLevelPlotfile(plotname, plotmf, varnames, geom, 0.0, 0); } |