From ffd3c32c39e807182848752cf823cfcda75cb328 Mon Sep 17 00:00:00 2001 From: Ben Wibking Date: Sun, 8 Sep 2024 17:00:23 -0500 Subject: [PATCH] use periodic BC for PopIII --- src/problems/PopIII/popiii.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/problems/PopIII/popiii.cpp b/src/problems/PopIII/popiii.cpp index d1ff9d069..ef96e8277 100644 --- a/src/problems/PopIII/popiii.cpp +++ b/src/problems/PopIII/popiii.cpp @@ -440,8 +440,8 @@ auto problem_main() -> int amrex::Vector BCs_cc(ncomp_cc); for (int n = 0; n < ncomp_cc; ++n) { for (int i = 0; i < AMREX_SPACEDIM; ++i) { - BCs_cc[n].setLo(i, amrex::BCType::foextrap); - BCs_cc[n].setHi(i, amrex::BCType::foextrap); + BCs_cc[n].setLo(i, amrex::BCType::int_dir); + BCs_cc[n].setHi(i, amrex::BCType::int_dir); } }