Skip to content

Commit

Permalink
add regrid_int
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Apr 19, 2024
1 parent a505128 commit 3107c65
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Source/driver/Castro_io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,13 @@ Castro::writeJobInfo (const std::string& dir, const Real io_time)
}
jobInfoFile << "\n";

jobInfoFile << " amr.regrid_int: ";
for (int lev = 1; lev <= max_level; lev++) {
int regridint = parent->regridInt(lev-1);
jobInfoFile << regridint << " ";
}
jobInfoFile << "\n";

jobInfoFile << " amr.blocking_factor: ";
for (int lev = 1; lev <= max_level; lev++) {
IntVect bf = parent->blockingFactor(lev-1);
Expand Down

0 comments on commit 3107c65

Please sign in to comment.