diff --git a/Source/driver/Castro_io.cpp b/Source/driver/Castro_io.cpp index 07d9b7334a..b01ffde47c 100644 --- a/Source/driver/Castro_io.cpp +++ b/Source/driver/Castro_io.cpp @@ -753,8 +753,32 @@ Castro::writeJobInfo (const std::string& dir, const Real io_time) } jobInfoFile << "\n"; + jobInfoFile << " amr.n_error_buf: "; + for (int lev = 1; lev <= max_level; lev++) { + int errbuf = parent->nErrorBuf(lev-1); + jobInfoFile << errbuf << " "; + } + jobInfoFile << "\n"; + + jobInfoFile << " amr.blocking_factor: "; + for (int lev = 1; lev <= max_level; lev++) { + IntVect bf = parent->blockingFactor(lev-1); + jobInfoFile << bf[0] << " "; + } + jobInfoFile << "\n"; + + jobInfoFile << " amr.max_grid_size: "; + for (int lev = 1; lev <= max_level; lev++) { + IntVect mgs = parent->maxGridSize(lev-1); + jobInfoFile << mgs[0] << " "; + } jobInfoFile << "\n\n"; + jobInfoFile << " amr.subcycling_mode: " << parent->subcyclingMode(); + + jobInfoFile << "\n\n"; + + // species info int mlen = 20;