This called every output timestep
| 19 | |
| 20 | // This called every output timestep |
| 21 | int outputMonitor(BoutReal simtime, int iter, int NOUT) { |
| 22 | output.write("\nOutput monitor, time = {:e}, step {:d} of {:d}\n", simtime, iter, |
| 23 | NOUT); |
| 24 | return 0; |
| 25 | } |
| 26 | |
| 27 | // This called every timestep |
| 28 | int timestepMonitor(BoutReal simtime, BoutReal dt) { |