Skip to content

Commit

Permalink
remove plot/checkfile writing at the end of Evolve_MB that creates ex…
Browse files Browse the repository at this point in the history
…traneous files
  • Loading branch information
mukul1992 committed Feb 9, 2024
1 parent f4b2eae commit b1d503d
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions Source/ERF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1673,27 +1673,5 @@ ERF::Evolve_MB (int MBstep, int max_block_step)
if (cur_time >= stop_time - 1.e-6*dt[0]) break;
}

/* I don't think we need these for the multiblock Evolve
** Results in extraneous plot/checkpoint files
if (plot_int_1 > 0 && istep[0] > last_plot_file_step_1) {
WritePlotFile(1,plot_var_names_1);
}
if (plot_int_2 > 0 && istep[0] > last_plot_file_step_2) {
WritePlotFile(2,plot_var_names_2);
}
if (check_int > 0 && istep[0] > last_check_file_step) {
#ifdef ERF_USE_NETCDF
if (check_type == "netcdf") {
WriteNCCheckpointFile();
}
#endif
if (check_type == "native") {
WriteCheckpointFile();
}
}
*/

}
#endif

0 comments on commit b1d503d

Please sign in to comment.