Compare first- vs second-order interpolation on AMR Sod tube#

 7 import os
 8
 9 import matplotlib.pyplot as plt
10 import numpy as np
11 from matplotlib.animation import PillowWriter
12 from shamrock.utils.plot import show_image_sequence
13
14 import shamrock
15
16 shamrock.enable_experimental_features()
17
18 # If we use the shamrock executable to run this script instead of the python interpreter,
19 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
20 if not shamrock.sys.is_initialized():
21     shamrock.change_loglevel(1)
22     shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
 - Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )

Setup parameters

 28 multx = 1
 29 multy = 1
 30 multz = 1
 31 max_amr_lev = 2
 32 cell_size = 2 << max_amr_lev  # refinement is limited to cell_size = 2
 33 base = 16
 34 gamma = 1.4
 35 scale_fact = 1 / (cell_size * base * multx)
 36
 37 err_min = 0.25
 38 err_max = 0.15
 39
 40 etot_L = 1.0 / (gamma - 1)
 41 etot_R = 0.1 / (gamma - 1)
 42
 43 xref = 0.5
 44 xrange = 0.5
 45 sod = shamrock.phys.SodTube(gamma=gamma, rho_1=1, P_1=1, rho_5=0.125, P_5=0.1)
 46
 47 t_snapshot = np.linspace(0, 0.245, 120).tolist()
 48 n_snapshot = len(t_snapshot)
 49
 50
 51 def rho_map(rmin, rmax):
 52
 53     x, y, z = rmin
 54     if y < 0.5:
 55         return 1
 56     else:
 57         return 0.125
 58
 59
 60 def rhoetot_map(rmin, rmax):
 61     x, y, z = rmin
 62     if y < 0.5:
 63         return etot_L
 64     else:
 65         return etot_R
 66
 67
 68 def rhovel_map(rmin, rmax):
 69     return (0, 0, 0)
 70
 71
 72 def convert_to_cell_coords(model, dic):
 73
 74     cmin = dic["cell_min"]
 75     cmax = dic["cell_max"]
 76
 77     xmin = []
 78     ymin = []
 79     zmin = []
 80     xmax = []
 81     ymax = []
 82     zmax = []
 83
 84     for i in range(len(cmin)):
 85         m, M = cmin[i], cmax[i]
 86
 87         mx, my, mz = m
 88         Mx, My, Mz = M
 89
 90         for j in range(8):
 91             a, b = model.get_cell_coords(((mx, my, mz), (Mx, My, Mz)), j)
 92
 93             x, y, z = a
 94             xmin.append(x)
 95             ymin.append(y)
 96             zmin.append(z)
 97
 98             x, y, z = b
 99             xmax.append(x)
100             ymax.append(y)
101             zmax.append(z)
102
103     dic["xmin"] = np.array(xmin)
104     dic["ymin"] = np.array(ymin)
105     dic["zmin"] = np.array(zmin)
106     dic["xmax"] = np.array(xmax)
107     dic["ymax"] = np.array(ymax)
108     dic["zmax"] = np.array(zmax)
109
110     return dic
111
112
113 def analysis(i_snapshot, ctx, model, png_prefix, dump_path, dX0):
114     dic = convert_to_cell_coords(model, ctx.collect_data())
115     if i_snapshot == 0:
116         dX0 = dic["ymax"][0] - dic["ymin"][0]
117
118     t = model.get_time()
119
120     X = []
121     dX = []
122     rho = []
123     rhovelx = []
124     rhoetot = []
125
126     for i in range(len(dic["ymin"])):
127         X.append(dic["ymin"][i])
128         dX.append(dic["ymax"][i] - dic["ymin"][i])
129         rho.append(dic["rho"][i])
130         rhovelx.append(dic["rhovel"][i][1])
131         rhoetot.append(dic["rhoetot"][i])
132
133     X = np.array(X)
134     dX = np.array(dX)
135     rho = np.array(rho)
136     rhovelx = np.array(rhovelx)
137     rhoetot = np.array(rhoetot)
138
139     keep = (np.array(dic["xmin"]) < 0.01) & (np.array(dic["zmin"]) < 0.01)
140     print("cell count on line: ", keep.sum())
141     X = X[keep]
142     dX = dX[keep]
143     rho = rho[keep]
144     rhovelx = rhovelx[keep]
145     rhoetot = rhoetot[keep]
146
147     vx = rhovelx / rho
148     P = (rhoetot - 0.5 * rho * (vx**2)) * (gamma - 1)
149
150     fig, axs = plt.subplots(nrows=1, ncols=1, figsize=(9, 6), dpi=125)
151
152     ax1 = plt.gca()
153     ax2 = ax1.twinx()
154
155     l_0 = np.log2(base * 2)
156
157     l = -np.log2(dX / dX0) + l_0
158
159     ax1.scatter(X, rho, rasterized=True, s=12 * np.ones(X.shape), label="rho")
160     ax1.scatter(X, vx, rasterized=True, s=12 * np.ones(X.shape), label="v")
161     ax1.scatter(
162         X,
163         P,
164         rasterized=True,
165         s=12 * np.ones(X.shape),
166         label="P",
167     )
168     idx = np.argsort(X)
169     ax2.plot(
170         X[idx],
171         l[idx],
172         color="purple",
173         marker="D",
174         linewidth=2.0,
175         ls="-.",
176         label="AMR level",
177         rasterized=True,
178     )
179     ax1.legend(loc=0)
180     ax2.legend(loc=0)
181     ax1.grid()
182
183     #### add analytical soluce
184     arr_x = np.linspace(xref - xrange, xref + xrange, 1000)
185
186     arr_rho = []
187     arr_P = []
188     arr_vx = []
189
190     for i in range(len(arr_x)):
191         x_ = arr_x[i] - xref
192
193         _rho, _vx, _P = sod.get_value(t, x_)
194         arr_rho.append(_rho)
195         arr_vx.append(_vx)
196         arr_P.append(_P)
197
198     ax1.plot(arr_x, arr_rho, ls="--", lw=2.0, alpha=0.7, color="black", label="analytic")
199     ax1.plot(arr_x, arr_vx, ls="--", lw=2.0, alpha=0.7, color="black")
200     ax1.plot(arr_x, arr_P, ls="--", lw=2.0, alpha=0.7, color="black")
201     ax2.set_ylabel("AMR level")
202     ax2.set_autoscale_on(False)
203     ax2.set_ylim(0.5, l_0 + max_amr_lev + 0.5)
204     ax1.set_xlim(-0.05, 1.05)
205     plt.title(f"Threshold = {err_max}, derefinement factor = {err_min}")
206     plt.savefig(f"{png_prefix}_{i_snapshot:04d}.png")
207     plt.close()
208
209     if i_snapshot == n_snapshot - 1:
210         np.save(dump_path, {"x": X, "rho": rho, "vx": vx, "P": P, "l": l})
211
212     return dX0
213
214
215 def run_case(interp_mode, png_prefix, dump_path):
216     ctx = shamrock.Context()
217     ctx.pdata_layout_new()
218
219     model = shamrock.get_Model_Ramses(context=ctx, vector_type="f64_3", grid_repr="i64_3")
220
221     cfg = model.gen_default_config()
222     cfg.set_scale_factor(scale_fact)
223
224     cfg.set_eos_gamma(gamma)
225     cfg.set_Csafe(0.3)
226     cfg.set_boundary_condition("x", "reflective")
227     cfg.set_boundary_condition("y", "reflective")
228     cfg.set_boundary_condition("z", "reflective")
229     cfg.set_riemann_solver_hllc()
230     cfg.set_amr_mode_old(False)
231     if interp_mode == "second":
232         cfg.set_second_order_interpolation_mode()
233     elif interp_mode == "first":
234         cfg.set_first_order_interpolation_mode()
235     else:
236         raise ValueError(f"Unknown interpolation mode: {interp_mode}")
237
238     cfg.set_slope_lim_minmod()
239     cfg.set_face_time_interpolation(True)
240
241     cfg.set_amr_mode_pseudo_gradient_based(error_min=err_min, error_max=err_max)
242     model.set_solver_config(cfg)
243
244     model.init_scheduler(int(1e7), 1)
245     model.make_base_grid(
246         (0, 0, 0), (cell_size, cell_size, cell_size), (base * multx, base * multy, base * multz)
247     )
248
249     model.set_field_value_lambda_f64("rho", rho_map)
250     model.set_field_value_lambda_f64("rhoetot", rhoetot_map)
251     model.set_field_value_lambda_f64_3("rhovel", rhovel_map)
252
253     dX0 = None
254     t_target = t_snapshot[-1]
255     for i_snapshot, t_target in enumerate(t_snapshot):
256         model.evolve_until(t_target)
257         print("snapshot", i_snapshot, "time", t_target)
258         dX0 = analysis(i_snapshot, ctx, model, png_prefix, dump_path, dX0)
259         print("analysis done")
260
261     return ctx, model, t_target
262
263
264 def overlay_plot(field, ylabel, out_path, data_first, data_second):
265     fig, ax1 = plt.subplots(nrows=1, ncols=1, figsize=(9, 6), dpi=125)
266     ax2 = ax1.twinx()
267
268     l_0 = np.log2(base * 2)
269
270     for data, label, color in (
271         (data_second, "second order", "C0"),
272         (data_first, "first order", "C1"),
273     ):
274         idx = np.argsort(data["x"])
275         x = data["x"][idx]
276         ax1.plot(x, data[field][idx], marker="o", ms=3, lw=1.0, color=color, label=label)
277         ax2.plot(
278             x,
279             data["l"][idx],
280             marker="D",
281             ms=3,
282             lw=1.5,
283             ls="-.",
284             color=color,
285             alpha=0.7,
286             label=f"{label} AMR level",
287         )
288
289     ax1.set_xlabel("x")
290     ax1.set_ylabel(ylabel)
291     ax2.set_ylabel("AMR level")
292     ax2.set_autoscale_on(False)
293     ax2.set_ylim(0.5, l_0 + max_amr_lev + 0.5)
294     ax1.set_xlim(-0.05, 1.05)
295     ax1.grid()
296     ax1.legend(loc=2)
297     ax2.legend(loc=1)
298     plt.savefig(out_path)
303 if shamrock.sys.world_rank() == 0:
304     os.makedirs("_to_trash", exist_ok=True)

First-order interpolation

309 ctx, model, t_target = run_case(
310     "first",
311     "_to_trash/sod_tube_amr_first",
312     "_to_trash/sod_tube_amr_first_last.npy",
313 )
---------------------------- WARNING ----------------------------
Warning: Experimental features are enabled
-----------------------------------------------------------------
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  3.96 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (53.7%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (0.2%)
   patch tree reduce : 852.00 ns  (0.1%)
   gen split merge   : 711.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.1%)
   LB compute        : 883.53 us  (98.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.4%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: time since start : 11.445144313 (s)                                         [Godunov][rank=0]
snapshot 0 time 0.0
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  32
analysis done
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.97 us    (2.6%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 367.00 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.1%)
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}}  [algs][rank=0]
Info: cfl dt = 0.002641107046026614                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6736e+05 | 32768 |      1 | 8.920e-02 | 0.0% |   1.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.002058823529411765
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 336.10 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3584

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  384

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  384

Will refine      512     blocks


Info: process block count = 7680                                                  [AMRGrid][rank=0]
Info: patch 0 derefine block count =  2688 new block count =  4992               [AMR Grid][rank=0]
Info: cfl dt = 0.001320553523013307                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6252e+05 | 39936 |      1 | 8.634e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.83983739623935 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 12.001116884 (s)                                         [Godunov][rank=0]
snapshot 1 time 0.002058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  24
analysis done
amr::Godunov: t = 0.002058823529411765, dt = 0.001320553523013307
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4992.0 min = 4992.0 factor = 1
 - strategy "round robin" : max = 4742.4 min = 4742.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4992
    max = 4992
    avg = 4992
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.36 us    (2.0%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 450.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (73.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2944

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  32

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  32

Will refine      2048    blocks


Info: process block count = 19328                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  224 new block count =  19104               [AMR Grid][rank=0]
Info: cfl dt = 0.0006602767615066535                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.1538e+06 | 152832 |      1 | 1.325e-01 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.88954981478997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003379377052425072, dt = 0.0006602767615066535
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 330.23 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (62.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0005917959817155755                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 5.2586e+05 | 152832 |      1 | 2.906e-01 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.178774443632172 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004039653813931726, dt = 7.799324489180404e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 350.19 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (63.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0005814604971244168                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0105e+05 | 152832 |      1 | 1.908e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.471645729236778 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 12.989933890000001 (s)                                   [Godunov][rank=0]
snapshot 2 time 0.00411764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.00411764705882353, dt = 0.0005814604971244168
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.81 us    (2.5%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 362.68 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0005258049103380767                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9537e+05 | 152832 |      1 | 1.922e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.893810778522923 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004699107555947947, dt = 0.0005258049103380767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 310.01 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004943037842579135                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.5508e+05 | 152832 |      1 | 2.333e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.113467456173339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005224912466286024, dt = 0.0004943037842579135
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 334.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004734368490963676                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8171e+05 | 152832 |      1 | 1.955e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.101786708505514 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005719216250543937, dt = 0.00045725433769135734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 293.97 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004588763411601025                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9809e+05 | 152832 |      1 | 1.915e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.595989329841265 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 14.466760035 (s)                                         [Godunov][rank=0]
snapshot 3 time 0.0061764705882352946
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.0061764705882352946, dt = 0.0004588763411601025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.98 us    (2.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 338.61 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004474232517735889                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9750e+05 | 152832 |      1 | 1.916e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.620095917346596 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006635346929395397, dt = 0.0004474232517735889
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 297.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000438485210298792                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8099e+05 | 152832 |      1 | 2.244e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.17706857714827 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007082770181168986, dt = 0.000438485210298792
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.97 us   (7.1%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 341.48 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00043135531115909146                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9658e+05 | 152832 |      1 | 1.919e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.227617180669984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007521255391467778, dt = 0.00043135531115909146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.8%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 323.25 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (60.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00042558474637361765                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9477e+05 | 152832 |      1 | 1.923e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.07536460794066 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007952610702626869, dt = 0.0002826834150201907
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 301.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00042235684757046523                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7965e+05 | 152832 |      1 | 1.960e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.191437871685382 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 16.136634834000002 (s)                                   [Godunov][rank=0]
snapshot 4 time 0.00823529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.00823529411764706, dt = 0.00042235684757046523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.39 us    (2.3%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 379.29 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00041822568525838854                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.3799e+05 | 152832 |      1 | 2.396e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.347186434391869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008657650965217525, dt = 0.00041822568525838854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 339.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004148592274875695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9225e+05 | 152832 |      1 | 1.929e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.804744103295092 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009075876650475913, dt = 0.0004148592274875695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 275.39 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (62.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004121301455769911                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4640e+05 | 152832 |      1 | 2.048e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.293913798124452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009490735877963482, dt = 0.0004121301455769911
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 326.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004099264352467595                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1184e+05 | 152832 |      1 | 1.883e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.881224301725779 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009902866023540473, dt = 0.000391251623518352
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.6%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 301.08 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00040823401361872523                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0888e+05 | 152832 |      1 | 1.889e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.4546954588060865 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 17.827648195000002 (s)                                   [Godunov][rank=0]
snapshot 5 time 0.010294117647058825
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.010294117647058825, dt = 0.00040823401361872523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.88 us    (2.3%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 398.88 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004068229949958348                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1323e+05 | 152832 |      1 | 1.879e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.8200764811156 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01070235166067755, dt = 0.0004068229949958348
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 337.26 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 9.20 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004057265071374787                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0906e+05 | 152832 |      1 | 1.889e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.753045975989886 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011109174655673385, dt = 0.0004057265071374787
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 307.85 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (60.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004048967509589252                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 5.8167e+05 | 152832 |      1 | 2.627e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.559008884835595 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011514901162810863, dt = 0.0004048967509589252
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 352.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00040429347167509716                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8590e+05 | 152832 |      1 | 1.945e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.495441904655854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011919797913769788, dt = 0.00040429347167509716
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.55 us   (7.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 322.22 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (62.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004038823192788411                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 5.9366e+05 | 152832 |      1 | 2.574e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.653566622805965 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012324091385444885, dt = 2.8849791025704202e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 410.81 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004038580166478702                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8899e+05 | 152832 |      1 | 1.937e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5361713164766847 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 19.790235467000002 (s)                                   [Godunov][rank=0]
snapshot 6 time 0.012352941176470589
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.012352941176470589, dt = 0.0004038580166478702
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.14 us    (2.4%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 461.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 361.75 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00040014902329657624                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.4688e+05 | 152832 |      1 | 2.363e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.153803455883532 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01275679919311846, dt = 0.00040014902329657624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 345.38 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003961529567668873                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8585e+05 | 152832 |      1 | 2.228e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.464580329951427 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013156948216415035, dt = 0.0003961529567668873
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.3%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 355.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003928116628632412                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0956e+05 | 152832 |      1 | 1.888e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.554366875034431 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013553101173181922, dt = 0.0003928116628632412
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.7%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 299.06 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00039001227933022976                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9158e+05 | 152832 |      1 | 1.931e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.324358675677862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013945912836045163, dt = 0.00039001227933022976
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 314.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038767551199431097                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0411e+05 | 152832 |      1 | 1.901e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.387191667400858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014335925115375393, dt = 7.583959050696046e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 324.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.7%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1360    blocks


Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038728000811695                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.1557e+06 | 228992 |      1 | 1.981e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3778696003736073 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 21.696738406 (s)                                         [Godunov][rank=0]
snapshot 7 time 0.014411764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.014411764705882353, dt = 0.00038728000811695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.52 us    (2.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 358.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038538012089489604                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2316e+05 | 228992 |      1 | 2.782e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.01175359166633 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014799044713999303, dt = 0.00038538012089489604
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 383.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038380879905951096                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4899e+05 | 228992 |      1 | 2.697e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.143683469980474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015184424834894199, dt = 0.00038380879905951096
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 383.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038249948604988357                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7215e+05 | 228992 |      1 | 2.626e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.262477237280764 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01556823363395371, dt = 0.00038249948604988357
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 334.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003813892668053765                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7325e+05 | 228992 |      1 | 2.622e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.251091736728626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015950733120003592, dt = 0.0003813892668053765
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 338.37 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003804603391118857                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5502e+05 | 228992 |      1 | 2.678e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.126567720495486 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016332122386808968, dt = 0.000138465848485151
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 374.34 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038017418480815646                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6358e+05 | 228992 |      1 | 2.652e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8798790487337331 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 24.183209299 (s)                                         [Godunov][rank=0]
snapshot 8 time 0.01647058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.01647058823529412, dt = 0.00038017418480815646
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.41 us    (2.2%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 401.78 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037946541024081067                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5603e+05 | 228992 |      1 | 2.675e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.116290448724203 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016850762420102274, dt = 0.00037946541024081067
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 377.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037890305947669477                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5781e+05 | 228992 |      1 | 2.669e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.117364299574357 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017230227830343083, dt = 0.00037890305947669477
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 349.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 7.51 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003784746854517556                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6469e+05 | 228992 |      1 | 2.648e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.150724729959665 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017609130889819778, dt = 0.0003784746854517556
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 325.15 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037816928560297153                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5527e+05 | 228992 |      1 | 2.677e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.088856239762039 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987605575271532, dt = 0.00037816928560297153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.7%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 320.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (63.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003779769243175751                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3861e+05 | 228992 |      1 | 2.731e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.985729421301514 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018365774860874505, dt = 0.00016363690383137952
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.6%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 318.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003779334266336324                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7621e+05 | 228992 |      1 | 2.613e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2541031432675567 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 26.675525451000002 (s)                                   [Godunov][rank=0]
snapshot 9 time 0.018529411764705885
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.018529411764705885, dt = 0.0003779334266336324
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.01 us   (2.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 364.54 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (70.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003778882280633542                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5921e+05 | 228992 |      1 | 2.665e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.105021759546069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018907345191339516, dt = 0.0003778882280633542
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 341.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003779380511756478                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6146e+05 | 228992 |      1 | 3.007e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.523708722820936 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01928523341940287, dt = 0.0003779380511756478
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 359.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037807581327782276                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8061e+05 | 228992 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.638070105558725 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019663171470578517, dt = 0.00037807581327782276
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 327.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4048

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000378294661993368                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7145e+05 | 228992 |      1 | 2.628e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.179687460172723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02004124728385634, dt = 0.000378294661993368
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 342.56 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000378463072405542                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7282e+05 | 228992 |      1 | 2.624e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.190826545501526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020419541945849707, dt = 0.00016869334826794327
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.4%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 353.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037797515264298                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6894e+05 | 228992 |      1 | 2.635e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.304464188860904 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 29.212674375000002 (s)                                   [Godunov][rank=0]
snapshot 10 time 0.02058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.02058823529411765, dt = 0.00037797515264298
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.74 us    (2.4%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 374.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037699941626697135                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5403e+05 | 228992 |      1 | 2.681e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.074782796876764 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02096621044676063, dt = 0.00037699941626697135
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 360.67 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037620943336680253                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7442e+05 | 228992 |      1 | 2.619e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.1825404880343795 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021343209863027603, dt = 0.00037620943336680253
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 367.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003755870320896961                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8032e+05 | 228992 |      1 | 2.601e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.206570479056939 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021719419296394406, dt = 0.0003755870320896961
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 321.18 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (62.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000375116177194481                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1764e+05 | 228992 |      1 | 3.191e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2373963810261825 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0220950063284841, dt = 0.000375116177194481
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 460.12 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003747826041865244                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2623e+05 | 228992 |      1 | 3.153e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.282731272508377 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02247012250567858, dt = 0.00017693631785083153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 302.77 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (61.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003746772513620958                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8257e+05 | 228992 |      1 | 2.595e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4549928905921456 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 31.788647230000002 (s)                                   [Godunov][rank=0]
snapshot 11 time 0.022647058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.022647058823529412, dt = 0.0003746772513620958
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.64 us    (2.0%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 470.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003745221859215174                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5507e+05 | 228992 |      1 | 3.033e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.447611799692336 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023021736074891507, dt = 0.0003745221859215174
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 339.38 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003744754548783714                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7630e+05 | 228992 |      1 | 2.613e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.159529497908186 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023396258260813024, dt = 0.0003744754548783714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 314.47 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (63.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037452733986909515                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6895e+05 | 228992 |      1 | 2.635e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.115630707754345 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023770733715691394, dt = 0.00037452733986909515
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.4%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 338.47 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003735624489937671                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5078e+05 | 228992 |      1 | 2.692e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.009378257850498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024145261055560488, dt = 0.0003735624489937671
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 328.30 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (62.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003720510624559312                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6207e+05 | 228992 |      1 | 2.656e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.062778600162133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024518823504554255, dt = 0.00018705884838692358
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.5%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 339.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (63.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003713961680312701                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7972e+05 | 228992 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2929623607760248 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 34.526817998000006 (s)                                   [Godunov][rank=0]
snapshot 12 time 0.024705882352941178
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.024705882352941178, dt = 0.0003713961680312701
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.95 us    (2.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 389.11 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003702436567735809                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6328e+05 | 228992 |      1 | 2.653e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.040475240442157 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025077278520972447, dt = 0.0003702436567735809
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 388.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036930546515684436                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5836e+05 | 228992 |      1 | 2.668e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.996193806629785 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025447522177746026, dt = 0.00036930546515684436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.3%)
   LB compute        : 391.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003685692932632418                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6438e+05 | 228992 |      1 | 2.649e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.01849600112831 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02581682764290287, dt = 0.0003685692932632418
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 318.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000368012457473407                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3343e+05 | 228992 |      1 | 2.748e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.829144097477693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026185396936166113, dt = 0.000368012457473407
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 333.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003676151623926975                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6411e+05 | 228992 |      1 | 2.650e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.999343620267698 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02655340939363952, dt = 0.0002112964887134236
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.3%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 572.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 340.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036746063373244544                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6959e+05 | 228992 |      1 | 2.633e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8885991390789685 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 37.036645032 (s)                                         [Godunov][rank=0]
snapshot 13 time 0.026764705882352944
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.026764705882352944, dt = 0.00036746063373244544
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.96 us    (2.5%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 373.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003672796507616619                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.7687e+05 | 228992 |      1 | 3.383e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.910171143904469 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02713216651608539, dt = 0.0003672796507616619
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 347.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036721765368245157                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6954e+05 | 228992 |      1 | 2.633e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.020745547756341 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02749944616684705, dt = 0.00036721765368245157
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.7%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 328.67 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036726209315270894                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8746e+05 | 228992 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.546044421227857 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027866663820529502, dt = 0.00036726209315270894
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 324.75 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036740184280750424                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8194e+05 | 228992 |      1 | 2.596e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.092102377881329 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02823392591368221, dt = 0.00036740184280750424
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 332.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036762705731360724                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6780e+05 | 228992 |      1 | 2.639e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.012362332993207 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028601327756489714, dt = 0.00022220165527499225
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 308.97 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036780686712538905                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7106e+05 | 228992 |      1 | 2.629e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0428255601482506 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 39.639042876000005 (s)                                   [Godunov][rank=0]
snapshot 14 time 0.028823529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.028823529411764706, dt = 0.00036780686712538905
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.29 us    (2.2%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.46 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (70.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003669072484205642                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7018e+05 | 228992 |      1 | 2.632e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.031645986443859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029191336278890097, dt = 0.0003669072484205642
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 338.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036577736572857516                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7383e+05 | 228992 |      1 | 2.621e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.040383996047691 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029558243527310662, dt = 0.00036577736572857516
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.3%)
   LB compute        : 314.75 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003648477787957031                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7630e+05 | 228992 |      1 | 2.613e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.03908811284805 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029924020893039235, dt = 0.0003648477787957031
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 318.39 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036409637466469625                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7819e+05 | 228992 |      1 | 2.608e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.037110551602941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03028886867183494, dt = 0.00036409637466469625
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 313.67 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036350260630629025                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0795e+05 | 228992 |      1 | 2.834e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.624688021305455 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030652965046499635, dt = 0.00022938789467683712
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 369.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003632076054142687                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8351e+05 | 228992 |      1 | 2.592e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.186132600764325 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 42.146905491000005 (s)                                   [Godunov][rank=0]
snapshot 15 time 0.030882352941176472
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.030882352941176472, dt = 0.0003632076054142687
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.15 us   (2.7%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 358.56 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6096

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003628388769352103                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9217e+05 | 228992 |      1 | 2.567e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.09430675099237 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03124556054659074, dt = 0.0003628388769352103
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 377.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6096

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003625929708364675                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3428e+05 | 228992 |      1 | 2.745e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.758914433103005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03160839942352595, dt = 0.0003625929708364675
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 359.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6096

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1024    blocks


Info: process block count = 35792                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003624565379364753                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0568e+06 | 286336 |      1 | 2.709e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.817870511592328 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03197099239436242, dt = 0.0003624565379364753
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 35792.0 min = 35792.0 factor = 1
 - strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 35792
    max = 35792
    avg = 35792
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.3%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 368.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 35792                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036241789079281307                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6895e+05 | 286336 |      1 | 3.724e-01 | 0.0% |   1.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.504147360473085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0323334489322989, dt = 0.00036241789079281307
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 35792.0 min = 35792.0 factor = 1
 - strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 35792
    max = 35792
    avg = 35792
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 341.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (65.9%)
Refinement 2:1 balance converged in  4  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1360    blocks


Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036246680707078676                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.1037e+06 | 362496 |      1 | 3.284e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.972535609470697 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03269586682309171, dt = 0.00024530964749652773
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 351.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036254911726798605                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8754e+05 | 362496 |      1 | 4.084e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.162224211843246 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 44.985026931 (s)                                         [Godunov][rank=0]
snapshot 16 time 0.03294117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.03294117647058824, dt = 0.00036254911726798605
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.19 us    (2.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 364.88 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003627249209527087                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0655e+05 | 362496 |      1 | 3.999e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2640553267621732 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03330372558785622, dt = 0.0003627249209527087
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 314.23 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (62.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629665256322226                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3023e+05 | 362496 |      1 | 3.897e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.350928181158563 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03366645050880893, dt = 0.0003629665256322226
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 350.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036313228399569627                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2356e+05 | 362496 |      1 | 3.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3291466725477195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03402941703444116, dt = 0.00036313228399569627
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 28.17 us   (7.2%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 350.67 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000362159058465951                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2040e+05 | 362496 |      1 | 4.419e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9586223009532175 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034392549318436855, dt = 0.000362159058465951
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (0.8%)
   patch tree reduce : 1.78 us    (0.3%)
   gen split merge   : 732.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.1%)
   LB compute        : 681.90 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036135722709313805                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6909e+05 | 362496 |      1 | 4.171e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.125833721163569 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0347547083769028, dt = 0.0002452916230972005
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 329.36 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003609051586529274                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2687e+05 | 362496 |      1 | 3.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.257886071924416 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 48.70244771 (s)                                          [Godunov][rank=0]
snapshot 17 time 0.035
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.035, dt = 0.0003609051586529274
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.94 us    (2.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 461.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 367.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003603436145991254                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6735e+05 | 362496 |      1 | 4.179e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1087724566604953 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03536090515865293, dt = 0.0003603436145991254
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 328.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035990632280413645                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1250e+05 | 362496 |      1 | 3.973e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.265483774029038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03572124877325206, dt = 0.00035990632280413645
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 313.55 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (61.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003595808847340149                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3781e+05 | 362496 |      1 | 4.327e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.994562617738532 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036081155096056194, dt = 0.0003595808847340149
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 324.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035935614621233837                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0767e+05 | 362496 |      1 | 4.488e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8842118206822023 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03644073598079021, dt = 0.00035935614621233837
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 349.71 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035922212111756847                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1709e+05 | 362496 |      1 | 4.436e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9160578297272073 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03680009212700255, dt = 0.00025873140240922216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 315.51 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035918115645641556                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2700e+05 | 362496 |      1 | 3.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3819306327421264 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 52.571013766 (s)                                         [Godunov][rank=0]
snapshot 18 time 0.03705882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.03705882352941177, dt = 0.00035918115645641556
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.3%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 374.46 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035918572876359655                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0734e+05 | 362496 |      1 | 3.995e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2365606932199444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.037418004685868186, dt = 0.00035918572876359655
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 347.45 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035926343641338375                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5478e+05 | 362496 |      1 | 4.241e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0490927506294208 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03777719041463178, dt = 0.00035926343641338375
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 338.37 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003594048175757619                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2158e+05 | 362496 |      1 | 3.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.288105897548373 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.038136453851045166, dt = 0.0003594048175757619
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 325.17 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (63.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003596019739926217                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3034e+05 | 362496 |      1 | 3.896e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3206640308759274 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03849585866862093, dt = 0.0003596019739926217
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 312.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (62.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035984828752765947                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3618e+05 | 362496 |      1 | 3.872e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3433256002741327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.038855460642613554, dt = 0.00026218641620998073
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.4%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 350.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036005755498787326                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8191e+05 | 362496 |      1 | 4.636e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.035957236807003 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 56.319088391 (s)                                         [Godunov][rank=0]
snapshot 19 time 0.039117647058823535
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.039117647058823535, dt = 0.00036005755498787326
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.17 us    (2.3%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 480.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 370.72 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035930912079304753                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3622e+05 | 362496 |      1 | 3.872e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.347702308695762 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03947770461381141, dt = 0.00035930912079304753
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 29.65 us   (7.8%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 336.25 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003586922231622003                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7226e+05 | 362496 |      1 | 4.156e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1125237338828358 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03983701373460445, dt = 0.0003586922231622003
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 349.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581966507005886                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9945e+05 | 362496 |      1 | 4.534e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8478047883689843 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04019570595776665, dt = 0.0003581966507005886
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 309.52 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578027240481628                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0616e+05 | 362496 |      1 | 4.497e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8677536542998614 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04055390260846724, dt = 0.0003578027240481628
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 314.92 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574995586195594                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0822e+05 | 362496 |      1 | 4.485e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8719335341371717 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.040911705332515404, dt = 0.0002647652557198968
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 327.42 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357331265122413                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7548e+05 | 362496 |      1 | 4.674e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0390644319483626 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 60.24261838 (s)                                          [Godunov][rank=0]
snapshot 20 time 0.0411764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.0411764705882353, dt = 0.000357331265122413
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 30.75 us   (7.2%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 384.09 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035716392054854106                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4876e+05 | 362496 |      1 | 4.271e-01 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0120072534084827 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04153380185335771, dt = 0.00035716392054854106
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 360.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035706405030961925                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1343e+05 | 362496 |      1 | 3.968e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2399919304851834 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041890965773906254, dt = 0.00035706405030961925
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 369.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570259578152746                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0933e+05 | 362496 |      1 | 4.479e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8699251635466876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.042248029824215876, dt = 0.0003570259578152746
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035704721713846057                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1338e+05 | 362496 |      1 | 3.969e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.238549124045322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04260505578203115, dt = 0.00035704721713846057
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 388.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571206238804998                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9723e+05 | 362496 |      1 | 4.040e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.181486598855258 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04296210299916961, dt = 0.0002731911184774491
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 390.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572100346882426                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1057e+05 | 362496 |      1 | 3.981e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.470459101211964 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 64.055141496 (s)                                         [Godunov][rank=0]
snapshot 21 time 0.04323529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.04323529411764706, dt = 0.0003572100346882426
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.47 us    (2.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 380.82 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035736078083103474                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1418e+05 | 362496 |      1 | 4.452e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.888312104651568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0435925041523353, dt = 0.00035736078083103474
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 400.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575490514410672                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1678e+05 | 362496 |      1 | 3.954e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.253667818968732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.043949864933166334, dt = 0.0003575490514410672
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 386.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577710949379092                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7761e+05 | 362496 |      1 | 4.130e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.116278132049449 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0443074139846074, dt = 0.0003577710949379092
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 411.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035742494047278565                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6640e+05 | 362496 |      1 | 4.184e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0783881116713343 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04466518507954531, dt = 0.00035742494047278565
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 389.15 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569534295579448                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9327e+05 | 362496 |      1 | 4.570e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.815824723785146 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.045022610020018096, dt = 0.00027150762704072906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 387.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035666129054036984                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9399e+05 | 362496 |      1 | 4.565e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.140909803383251 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 67.982100038 (s)                                         [Godunov][rank=0]
snapshot 22 time 0.045294117647058825
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.045294117647058825, dt = 0.00035666129054036984
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.14 us   (2.4%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 393.43 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035634585554167536                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1517e+05 | 362496 |      1 | 3.961e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.241579339804121 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.045650778937599196, dt = 0.00035634585554167536
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 382.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561024389029461                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0794e+05 | 362496 |      1 | 3.993e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2131312883868093 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04600712479314087, dt = 0.0003561024389029461
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 315.32 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (62.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559211620225121                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0520e+05 | 362496 |      1 | 4.005e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2012567272586328 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.046363227232043815, dt = 0.0003559211620225121
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 322.27 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035579568082420415                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5457e+05 | 362496 |      1 | 4.242e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0206618684249724 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04671914839406632, dt = 0.00035579568082420415
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 352.86 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (62.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557205865412337                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6140e+05 | 362496 |      1 | 4.208e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.043735009336688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047074944074890525, dt = 0.00027799710158006585
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1.44 us    (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 395.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556963794768057                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0847e+05 | 362496 |      1 | 3.990e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5081286613051423 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 71.80550171600001 (s)                                    [Godunov][rank=0]
snapshot 23 time 0.04735294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.04735294117647059, dt = 0.0003556963794768057
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.83 us    (2.4%)
   patch tree reduce : 1.15 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 392.42 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557006843993593                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8578e+05 | 362496 |      1 | 4.613e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7757517140569203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0477086375559474, dt = 0.0003557006843993593
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.3%)
   LB compute        : 362.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10496

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  160

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035574518085903904                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1777e+05 | 362496 |      1 | 3.950e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2420515912675794 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.048064338240346755, dt = 0.00035574518085903904
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 380.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10496

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  160

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558252269440543                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1301e+05 | 362496 |      1 | 3.970e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.225621872134638 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.048420083421205795, dt = 0.0003558252269440543
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 364.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14592

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1184

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  38144              [AMR Grid][rank=0]
Info: cfl dt = 0.0003579088567971036                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5480e+05 | 305152 |      1 | 4.043e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.168513397988397 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.048775908648149846, dt = 0.0003579088567971036
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 38144.0 min = 38144.0 factor = 1
 - strategy "round robin" : max = 36236.8 min = 36236.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 38144
    max = 38144
    avg = 38144
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 401.21 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  160

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 38144                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572846752950913                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6670e+05 | 305152 |      1 | 3.521e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.659551991503692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04913381750494695, dt = 0.0002779472009354078
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 38144.0 min = 38144.0 factor = 1
 - strategy "round robin" : max = 36236.8 min = 36236.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 38144
    max = 38144
    avg = 38144
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 372.95 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (71.6%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1280    blocks


Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035689226816595666                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.9604e+05 | 376832 |      1 | 3.783e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.644802207358335 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 75.50524732000001 (s)                                    [Godunov][rank=0]
snapshot 24 time 0.049411764705882356
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.049411764705882356, dt = 0.00035689226816595666
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.75 us    (2.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 363.40 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035647631894804207                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0789e+05 | 376832 |      1 | 4.151e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0954663933998456 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049768656974048316, dt = 0.00035647631894804207
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1.52 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 419.07 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035615161196444475                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1757e+05 | 376832 |      1 | 4.107e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.124817571635507 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05012513329299636, dt = 0.00035615161196444475
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 389.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035590244357145963                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0925e+05 | 376832 |      1 | 4.144e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.093662807997655 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0504812849049608, dt = 0.00035590244357145963
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 329.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557186801054636                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1513e+05 | 376832 |      1 | 4.118e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1114757227701513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.050837187348532265, dt = 0.0003557186801054636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 329.76 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035559179641390346                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1222e+05 | 376832 |      1 | 4.131e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.09998992742499 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05119290602863773, dt = 0.0002776822066563947
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 352.09 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555299655046463                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1636e+05 | 376832 |      1 | 4.112e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.430913335735013 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 79.540126657 (s)                                         [Godunov][rank=0]
snapshot 25 time 0.05147058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.05147058823529412, dt = 0.0003555299655046463
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.05 us   (2.3%)
   patch tree reduce : 1.46 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 405.60 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (72.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035548713025362563                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1505e+05 | 376832 |      1 | 4.118e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.107971674687041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05182611820079877, dt = 0.00035548713025362563
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 381.18 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554840536908356                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2236e+05 | 376832 |      1 | 4.086e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.132412603492596 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0521816053310524, dt = 0.0003554840536908356
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 357.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035551621311103517                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6401e+05 | 376832 |      1 | 4.361e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.934228433953104 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05253708938474323, dt = 0.00035551621311103517
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.7%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 360.48 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355579856715522                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1942e+05 | 376832 |      1 | 4.099e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1226731490378667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05289260559785427, dt = 0.000355579856715522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 382.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556717803907193                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1325e+05 | 376832 |      1 | 4.126e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.102284385421322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05324818545456979, dt = 0.00028122631013609983
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 336.56 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557636857665235                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2584e+05 | 376832 |      1 | 4.070e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4874010606384362 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 83.450084081 (s)                                         [Godunov][rank=0]
snapshot 26 time 0.05352941176470589
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.05352941176470589, dt = 0.0003557636857665235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.80 us    (2.4%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 393.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558993594104896                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1402e+05 | 376832 |      1 | 4.123e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1065120963344386 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05388517545047241, dt = 0.0003558993594104896
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 358.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (62.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560563836669678                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1518e+05 | 376832 |      1 | 4.118e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.11164584923686 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0542410748098829, dt = 0.0003560563836669678
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 319.72 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (62.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562328262462696                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2761e+05 | 376832 |      1 | 4.062e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1552787855030937 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.054597131193549864, dt = 0.0003562328262462696
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 356.62 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (74.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035613468504769693                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5094e+05 | 376832 |      1 | 4.428e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8959389616531315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.054953364019796135, dt = 0.00035613468504769693
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.5%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 319.17 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035587443624114504                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2547e+05 | 376832 |      1 | 4.565e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.808459541367533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.055309498704843835, dt = 0.0002787365892738189
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 29.44 us   (8.0%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 327.88 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035571218336622915                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6018e+05 | 376832 |      1 | 4.381e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2905282551389403 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 87.415919554 (s)                                         [Godunov][rank=0]
snapshot 27 time 0.055588235294117654
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.055588235294117654, dt = 0.00035571218336622915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.69 us    (2.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 396.87 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555468498792228                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1091e+05 | 376832 |      1 | 4.137e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0954954846404465 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05594394747748388, dt = 0.0003555468498792228
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.4%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 357.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035542290869860533                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3198e+05 | 376832 |      1 | 4.529e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8259421143228876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0562994943273631, dt = 0.00035542290869860533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.3%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 358.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003553352163444378                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7524e+05 | 376832 |      1 | 4.305e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9718447456856043 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056654917236061704, dt = 0.0003553352163444378
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 375.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003552799889939039                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2284e+05 | 376832 |      1 | 4.083e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1327163519050574 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.057010252452406145, dt = 0.0003552799889939039
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 371.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003552539708784136                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2087e+05 | 376832 |      1 | 4.092e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.125530334323421 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.057365532441400045, dt = 0.00028152638212936704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 386.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003552532959932529                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1811e+05 | 376832 |      1 | 4.104e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.469271868357646 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 91.32521365800001 (s)                                    [Godunov][rank=0]
snapshot 28 time 0.05764705882352941
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.05764705882352941, dt = 0.0003552532959932529
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.84 us    (2.5%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 367.19 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (63.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355272433269409                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2527e+05 | 376832 |      1 | 4.073e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.140226775639317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05800231211952266, dt = 0.000355272433269409
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 318.28 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035531310170284694                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1830e+05 | 376832 |      1 | 4.104e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1167359192814965 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05835758455279207, dt = 0.00035531310170284694
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 396.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035537342086142235                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6928e+05 | 376832 |      1 | 4.335e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.95070240203862 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05871289765449492, dt = 0.00035537342086142235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 381.49 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554512631042177                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2105e+05 | 376832 |      1 | 4.091e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1269604528855117 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05906827107535634, dt = 0.0003554512631042177
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1.39 us    (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035554483978599916                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1988e+05 | 376832 |      1 | 4.097e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1236799273917595 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.059423722338460556, dt = 0.0002821600144806216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 370.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355629767508989                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0931e+05 | 376832 |      1 | 4.656e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.181549004412934 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 95.25036899700001 (s)                                    [Godunov][rank=0]
snapshot 29 time 0.05970588235294118
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.05970588235294118, dt = 0.000355629767508989
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.09 us    (2.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 532.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 364.22 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035574788330154953                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8020e+05 | 376832 |      1 | 4.281e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9904289268751705 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06006151212045017, dt = 0.00035574788330154953
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 330.33 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035573262128356327                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2507e+05 | 376832 |      1 | 4.074e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.143930826819862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.060417260003751715, dt = 0.00035573262128356327
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 345.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555328816600719                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7287e+05 | 376832 |      1 | 4.317e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.966374516397809 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06077299262503528, dt = 0.0003555328816600719
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 359.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003553722771406698                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0587e+05 | 376832 |      1 | 4.160e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.076797220067821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06112852550669535, dt = 0.0003553722771406698
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 364.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355245231392698                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2912e+05 | 376832 |      1 | 4.056e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1543663956548995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06148389778383602, dt = 0.00028080809851692423
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 380.80 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003551656951086259                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1828e+05 | 376832 |      1 | 4.104e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4634128799917994 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 99.148028045 (s)                                         [Godunov][rank=0]
snapshot 30 time 0.061764705882352944
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.061764705882352944, dt = 0.0003551656951086259
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 31.52 us   (7.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 378.49 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003550860663262682                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2216e+05 | 376832 |      1 | 4.086e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1288928556116073 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06211987157746157, dt = 0.0003550860663262682
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 373.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035502911747357127                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0120e+05 | 376832 |      1 | 4.181e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.057089780199461 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06247495764378784, dt = 0.00035502911747357127
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 348.65 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035499259943589295                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6948e+05 | 376832 |      1 | 4.334e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.94903182654817 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0628299867612614, dt = 0.00035499259943589295
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.6%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 359.12 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035497454701911634                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9431e+05 | 376832 |      1 | 4.214e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0329126533352393 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0631849793606973, dt = 0.00035497454701911634
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 372.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035497324181322175                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9242e+05 | 376832 |      1 | 4.223e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.026358455762716 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06353995390771641, dt = 0.00028357550404829734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 327.96 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003549837492119999                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0824e+05 | 376832 |      1 | 4.149e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.46051287699949 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 103.063984985 (s)                                        [Godunov][rank=0]
snapshot 31 time 0.06382352941176471
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.06382352941176471, dt = 0.0003549837492119999
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 30.79 us   (7.4%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 374.31 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035500884926620844                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1662e+05 | 376832 |      1 | 4.111e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1085224583593374 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06417851316097671, dt = 0.00035500884926620844
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 346.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003550469543683591                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0747e+05 | 376832 |      1 | 4.667e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.73854594608717 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06453352201024291, dt = 0.0003550469543683591
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.4%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 334.13 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035509701816045607                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4567e+05 | 376832 |      1 | 4.456e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.868413568044456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06488856896461127, dt = 0.00035509701816045607
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 329.38 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003551581269913472                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2196e+05 | 376832 |      1 | 4.087e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.127623599952791 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06524366598277173, dt = 0.0003551581269913472
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 362.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035522948732904597                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9020e+05 | 376832 |      1 | 4.233e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.02039676766131 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06559882410976307, dt = 0.00028352883141340157
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 393.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (62.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355293607474769                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7036e+05 | 376832 |      1 | 4.330e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3574863687483822 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 107.067720667 (s)                                        [Godunov][rank=0]
snapshot 32 time 0.06588235294117648
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.06588235294117648, dt = 0.000355293607474769
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.82 us    (2.4%)
   patch tree reduce : 1.17 us    (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 362.76 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 24.48 us   (6.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1120

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  39936              [AMR Grid][rank=0]
Info: cfl dt = 0.00036149843526701755                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.1144e+05 | 319488 |      1 | 5.225e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.447893931562504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06623764654865125, dt = 0.00036149843526701755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 39936.0 min = 39936.0 factor = 1
 - strategy "round robin" : max = 37939.2 min = 37939.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 39936
    max = 39936
    avg = 39936
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.6%)
   patch tree reduce : 1.15 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 309.55 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 39936                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036060040467195527                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1041e+05 | 319488 |      1 | 3.509e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.708426798245461 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06659914498391827, dt = 0.00036060040467195527
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 39936.0 min = 39936.0 factor = 1
 - strategy "round robin" : max = 37939.2 min = 37939.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 39936
    max = 39936
    avg = 39936
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 390.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1024    blocks


Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035982145632245874                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.8876e+05 | 376832 |      1 | 3.811e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.406206629171442 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06695974538859022, dt = 0.00035982145632245874
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 342.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035914588969767643                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0359e+05 | 376832 |      1 | 4.689e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.762320968622848 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06731956684491268, dt = 0.00035914588969767643
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 361.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003585602260971688                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2761e+05 | 376832 |      1 | 4.553e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8395659655973056 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06767871273461036, dt = 0.0002624637359778803
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 370.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035818614749021755                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4936e+05 | 376832 |      1 | 4.437e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.129675832370545 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 111.122434005 (s)                                        [Godunov][rank=0]
snapshot 33 time 0.06794117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.06794117647058824, dt = 0.00035818614749021755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.67 us    (2.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 361.00 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035772949883357453                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8755e+05 | 376832 |      1 | 4.246e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.03706780594241 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06829936261807845, dt = 0.00035772949883357453
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 333.23 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035733522864515177                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9193e+05 | 376832 |      1 | 4.225e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0481706344581743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06865709211691202, dt = 0.00035733522864515177
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 363.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569957898804619                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2731e+05 | 376832 |      1 | 4.064e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.165600501294558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06901442734555718, dt = 0.0003569957898804619
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 355.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035670467911078655                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1617e+05 | 376832 |      1 | 4.113e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1246019208375557 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06937142313543765, dt = 0.00035670467911078655
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 325.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035645627961800974                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2499e+05 | 376832 |      1 | 4.074e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.152120314231706 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06972812781454843, dt = 0.0002718721854515771
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.3%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 364.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035629450998667664                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2485e+05 | 376832 |      1 | 4.075e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.402093549772668 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 115.021269282 (s)                                        [Godunov][rank=0]
snapshot 34 time 0.07
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.07, dt = 0.00035629450998667664
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.58 us   (2.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 570.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 407.32 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035610976355638074                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2267e+05 | 376832 |      1 | 4.084e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1405929362078444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07035629450998668, dt = 0.00035610976355638074
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 367.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559558483019077                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1932e+05 | 376832 |      1 | 4.099e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1275600866896838 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07071240427354306, dt = 0.0003559558483019077
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 338.54 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (58.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035582790150378164                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2197e+05 | 376832 |      1 | 4.087e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1352083928245826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07106836012184496, dt = 0.00035582790150378164
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 315.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035572097021245916                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2442e+05 | 376832 |      1 | 4.076e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1424345418282913 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07142418802334874, dt = 0.00035572097021245916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 371.61 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (70.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035563286609312163                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1363e+05 | 376832 |      1 | 4.125e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1047980025513913 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0717799089935612, dt = 0.00027891453585057735
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 358.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035557641757046917                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0768e+05 | 376832 |      1 | 4.152e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.418574410540735 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 118.923303816 (s)                                        [Godunov][rank=0]
snapshot 35 time 0.07205882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.07205882352941177, dt = 0.00035557641757046917
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.15 us   (2.4%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 394.40 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035551725604782554                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2026e+05 | 376832 |      1 | 4.095e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.126072021371546 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07241439994698225, dt = 0.00035551725604782554
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 326.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035547222283053805                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1880e+05 | 376832 |      1 | 4.101e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.120586522835072 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07276991720303007, dt = 0.00035547222283053805
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 370.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554400226494347                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2976e+05 | 376832 |      1 | 4.053e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.157411469724203 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07312538942586061, dt = 0.0003554400226494347
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 323.39 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554195276131099                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8284e+05 | 376832 |      1 | 4.268e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.997793067707441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07348082944851005, dt = 0.0003554195276131099
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 314.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035540975579897554                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1359e+05 | 376832 |      1 | 4.125e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1020345738115678 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07383624897612316, dt = 0.00028139808270037647
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 320.17 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035540937152578025                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1615e+05 | 376832 |      1 | 4.113e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.462862391756888 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 122.830481109 (s)                                        [Godunov][rank=0]
snapshot 36 time 0.07411764705882354
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.07411764705882354, dt = 0.00035540937152578025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.02 us   (2.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 395.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035541671035737226                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6778e+05 | 376832 |      1 | 4.342e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9464206268268347 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07447305643034932, dt = 0.00035541671035737226
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.6%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 343.20 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035543266091545635                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1893e+05 | 376832 |      1 | 4.101e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.120147109020529 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07482847314070669, dt = 0.00035543266091545635
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 358.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554566386422403                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2387e+05 | 376832 |      1 | 4.079e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1370596324734907 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07518390580162214, dt = 0.0003554566386422403
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (1.1%)
   patch tree reduce : 1.12 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 402.42 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554881409283617                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0644e+05 | 376832 |      1 | 4.673e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7384929356669203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07553936244026438, dt = 0.0003554881409283617
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 351.65 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555267367226564                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5986e+05 | 376832 |      1 | 4.382e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9201706200077067 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07589485058119275, dt = 0.0002816200070425573
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 384.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035556221058351153                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0505e+05 | 376832 |      1 | 4.164e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4349644268487745 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 126.99409190300001 (s)                                   [Godunov][rank=0]
snapshot 37 time 0.0761764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.0761764705882353, dt = 0.00035556221058351153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.61 us    (2.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 389.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556126112690833                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2954e+05 | 376832 |      1 | 4.543e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.817770548674666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07653203279881882, dt = 0.0003556126112690833
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 410.30 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1024    blocks


Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556692071994914                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0282e+06 | 434176 |      1 | 4.223e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0318389240856147 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0768876454100879, dt = 0.0003556692071994914
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (1.2%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 368.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (63.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556690619968711                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4403e+05 | 434176 |      1 | 5.144e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.489099983446493 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0772433146172874, dt = 0.0003556690619968711
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 322.70 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556042553314787                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0947e+05 | 434176 |      1 | 5.364e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3871599401820522 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07759898367928426, dt = 0.0003556042553314787
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 375.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555506553729428                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2949e+05 | 434176 |      1 | 4.671e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.740626195734581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07795458793461574, dt = 0.00028070618303133177
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 353.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035551597202177697                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3008e+05 | 434176 |      1 | 4.668e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1647541089075264 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 131.294951817 (s)                                        [Godunov][rank=0]
snapshot 38 time 0.07823529411764707
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
analysis done
amr::Godunov: t = 0.07823529411764707, dt = 0.00035551597202177697
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.70 us    (2.2%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 421.02 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554800069630606                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2221e+05 | 434176 |      1 | 4.708e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7184721058324826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07859081008966885, dt = 0.0003554800069630606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 377.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035545278982151377                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3731e+05 | 434176 |      1 | 4.632e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.762694219507084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07894629009663191, dt = 0.00035545278982151377
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 305.12 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554336380500117                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8975e+05 | 434176 |      1 | 4.880e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6223294705788436 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07930174288645343, dt = 0.0003554336380500117
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 366.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355421955556638                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3777e+05 | 434176 |      1 | 4.630e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.763703726177789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07965717652450345, dt = 0.000355421955556638
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.3%)
   patch tree reduce : 1.45 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 413.20 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035541722266652304                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8535e+05 | 434176 |      1 | 4.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.609138586951285 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0800125984800601, dt = 0.00028151916699874213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 368.76 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 22.91 us   (5.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554183129590645                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7236e+05 | 434176 |      1 | 4.977e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.036298937842368 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 135.78315687 (s)                                         [Godunov][rank=0]
snapshot 39 time 0.08029411764705884
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
analysis done
amr::Godunov: t = 0.08029411764705884, dt = 0.0003554183129590645
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.96 us    (2.4%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 393.39 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554249227273622                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0756e+05 | 434176 |      1 | 5.376e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3798726954473852 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08064953596001789, dt = 0.0003554249227273622
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 369.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (71.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355437363975492                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3291e+05 | 434176 |      1 | 4.654e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7493029783239047 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08100496088274525, dt = 0.000355437363975492
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 325.85 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (70.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554553340381535                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3991e+05 | 434176 |      1 | 4.619e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7700275865082196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08136039824672074, dt = 0.0003554553340381535
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 354.89 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554782140110986                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2805e+05 | 434176 |      1 | 4.678e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7352326910445606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08171585358075889, dt = 0.0003554782140110986
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 355.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035550580014549315                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4071e+05 | 434176 |      1 | 4.615e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.772714699204753 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08207133179476998, dt = 0.00028160938170061767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 325.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555310508774365                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3095e+05 | 434176 |      1 | 4.664e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1737630301061523 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 140.285541502 (s)                                        [Godunov][rank=0]
snapshot 40 time 0.0823529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
analysis done
amr::Godunov: t = 0.0823529411764706, dt = 0.0003555310508774365
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.62 us    (2.5%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 365.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555605509223016                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3905e+05 | 434176 |      1 | 4.624e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7682281558713986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08270847222734803, dt = 0.0003555605509223016
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 379.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035549325393719627                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2726e+05 | 434176 |      1 | 4.682e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7337133696530933 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08306403277827033, dt = 0.00035549325393719627
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 362.28 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035543493565099284                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3961e+05 | 434176 |      1 | 4.621e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.769602424497511 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08341952603220754, dt = 0.00035543493565099284
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 351.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003553848002876062                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3388e+05 | 434176 |      1 | 4.649e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.75225732886804 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08377496096785852, dt = 0.0003553848002876062
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 330.00 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15360

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1120

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  47104              [AMR Grid][rank=0]
Info: cfl dt = 0.0003636141255386482                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9648e+05 | 376832 |      1 | 4.731e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7041312453286563 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08413034576814613, dt = 0.0002814189377362275
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (1.3%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 332.09 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.02 us   (94.6%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7168

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1344    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003628893933370237                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0592e+06 | 452096 |      1 | 4.268e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.373680442189408 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 144.679139947 (s)                                        [Godunov][rank=0]
snapshot 41 time 0.08441176470588235
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.08441176470588235, dt = 0.0003628893933370237
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.84 us    (2.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 372.74 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003620427693887616                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4029e+05 | 452096 |      1 | 5.380e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.428147786060406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08477465409921937, dt = 0.0003620427693887616
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.6%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 396.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (70.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003612967313526713                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2588e+05 | 452096 |      1 | 4.883e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6692357916511695 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08513669686860814, dt = 0.0003612967313526713
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 382.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036063816121729785                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2957e+05 | 452096 |      1 | 4.863e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6743586520146874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08549799359996081, dt = 0.00036063816121729785
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 389.67 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036005586216565963                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2601e+05 | 452096 |      1 | 4.882e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6592392141563623 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08585863176117811, dt = 0.00036005586216565963
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 378.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003595402423532729                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4958e+05 | 452096 |      1 | 5.321e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4358241112570576 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08621868762334377, dt = 0.00025190061195035085
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 335.34 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035921756914481407                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3850e+05 | 452096 |      1 | 4.817e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8825083776988154 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 149.37646761800002 (s)                                   [Godunov][rank=0]
snapshot 42 time 0.08647058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.08647058823529412, dt = 0.00035921756914481407
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.72 us    (2.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 374.34 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003587966587871964                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3255e+05 | 452096 |      1 | 4.848e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.667487106809495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08682980580443893, dt = 0.0003587966587871964
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 354.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035842276046004455                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3468e+05 | 452096 |      1 | 4.837e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.670453197944843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08718860246322613, dt = 0.00035842276046004455
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 373.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580903354858628                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3052e+05 | 452096 |      1 | 4.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6557834027226033 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08754702522368617, dt = 0.0003580903354858628
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 380.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035779457752314214                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9984e+05 | 452096 |      1 | 5.024e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5658338017746587 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08790511555917203, dt = 0.00035779457752314214
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 358.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575313073518461                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2800e+05 | 452096 |      1 | 4.872e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.643942010201897 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08826291013669518, dt = 0.0002665016280107013
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 388.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573555042734254                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4053e+05 | 452096 |      1 | 4.807e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.995927527275106 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 153.98838104200001 (s)                                   [Godunov][rank=0]
snapshot 43 time 0.08852941176470588
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.08852941176470588, dt = 0.0003573555042734254
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.09 us   (2.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 365.90 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035714033917693734                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7304e+05 | 452096 |      1 | 5.178e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4843038685656365 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08888676726897932, dt = 0.00035714033917693734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 403.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569487630353465                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1775e+05 | 452096 |      1 | 4.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6099765941793374 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08924390760815626, dt = 0.0003569487630353465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 369.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567782646477143                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2672e+05 | 452096 |      1 | 4.878e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6340751488514713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08960085637119161, dt = 0.0003567782646477143
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 355.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566266428064259                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3796e+05 | 452096 |      1 | 4.820e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.664726994116433 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08995763463583932, dt = 0.0003566266428064259
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 319.24 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (62.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035649196739071426                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2987e+05 | 452096 |      1 | 4.862e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6406311190228045 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09031426127864575, dt = 0.0002739740154718978
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 324.44 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356399656817916                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3035e+05 | 452096 |      1 | 4.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.029688707754022 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 158.644962865 (s)                                        [Godunov][rank=0]
snapshot 44 time 0.09058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09058823529411765, dt = 0.000356399656817916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.59 us    (2.5%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 356.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035629086997803074                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9758e+05 | 452096 |      1 | 5.037e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5473253375752773 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09094463495093556, dt = 0.00035629086997803074
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 363.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035619483977286496                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7585e+05 | 452096 |      1 | 5.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4848909938389143 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09130092582091359, dt = 0.00035619483977286496
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 358.57 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035610935571339365                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5882e+05 | 452096 |      1 | 5.264e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.435900216865951 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09165712066068646, dt = 0.00035610935571339365
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.7%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 347.54 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560328787209009                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3370e+05 | 452096 |      1 | 4.842e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6476601085562455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09201323001639986, dt = 0.0003560328787209009
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 352.34 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559646270602386                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2341e+05 | 452096 |      1 | 4.896e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6179183138288002 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09236926289512076, dt = 0.00027779592840865286
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 389.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355916915848677                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4704e+05 | 452096 |      1 | 5.337e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8737057258844398 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 163.424569807 (s)                                        [Godunov][rank=0]
snapshot 45 time 0.09264705882352942
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09264705882352942, dt = 0.000355916915848677
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.65 us    (2.5%)
   patch tree reduce : 1.16 us    (0.3%)
   gen split merge   : 632.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 365.04 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (70.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355861636455829                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5611e+05 | 452096 |      1 | 5.281e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.426333829751906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09300297573937809, dt = 0.000355861636455829
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 374.64 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558128756699817                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3051e+05 | 452096 |      1 | 4.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6367854053317603 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09335883737583392, dt = 0.0003558128756699817
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 348.71 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557701532561472                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1104e+05 | 452096 |      1 | 4.962e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5812486459618955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0937146502515039, dt = 0.0003557701532561472
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 324.90 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035573304665283226                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6981e+05 | 452096 |      1 | 5.198e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4641523737852826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09407042040476005, dt = 0.00035573304665283226
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 312.03 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (58.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035570118352365384                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4453e+05 | 452096 |      1 | 4.786e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.675555530622108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09442615345141288, dt = 0.0002797289015283033
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 319.65 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (62.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556797308846899                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2639e+05 | 452096 |      1 | 4.880e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0635019540730757 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 168.129345918 (s)                                        [Godunov][rank=0]
snapshot 46 time 0.09470588235294118
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09470588235294118, dt = 0.0003556797308846899
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 30.75 us   (7.5%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 366.15 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556564312088903                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4177e+05 | 452096 |      1 | 4.800e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.667336943816558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09506156208382587, dt = 0.0003556564312088903
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 347.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035563755573635717                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3208e+05 | 452096 |      1 | 4.850e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.639709838867456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09541721851503475, dt = 0.00035563755573635717
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 430.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035562287452121656                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7004e+05 | 452096 |      1 | 5.196e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4638841080849674 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0957728560707711, dt = 0.00035562287452121656
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 361.65 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035561218571646006                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3253e+05 | 452096 |      1 | 5.430e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3575497210647605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09612847894529232, dt = 0.00035561218571646006
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 389.99 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035560531249685467                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3256e+05 | 452096 |      1 | 4.848e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6407497327378464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09648409113100878, dt = 0.0002806147513441659
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.41 us   (7.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 322.61 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556025412888886                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1161e+05 | 452096 |      1 | 4.959e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0369938465416038 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 172.879788241 (s)                                        [Godunov][rank=0]
snapshot 47 time 0.09676470588235295
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09676470588235295, dt = 0.0003556025412888886
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.72 us    (2.6%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 350.11 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035560211680516743                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1390e+05 | 452096 |      1 | 4.947e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.587830963149915 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09712030842364183, dt = 0.00035560211680516743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 325.10 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (71.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035560512554227167                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9440e+05 | 452096 |      1 | 5.055e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5325984757506323 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.097475910540447, dt = 0.00035560512554227167
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 322.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035561146440505806                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3520e+05 | 452096 |      1 | 4.834e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6481742057148057 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09783151566598927, dt = 0.00035561146440505806
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 355.52 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (70.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556210456776062                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5252e+05 | 452096 |      1 | 5.303e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.414087304896412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09818712713039433, dt = 0.0003556210456776062
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 322.71 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (72.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035563379526409725                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4029e+05 | 452096 |      1 | 4.808e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6626922192720035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09854274817607193, dt = 0.0002807812356927786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 333.33 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556460775642129                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3431e+05 | 452096 |      1 | 4.839e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0889572879751266 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 177.591178834 (s)                                        [Godunov][rank=0]
snapshot 48 time 0.09882352941176471
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09882352941176471, dt = 0.0003556460775642129
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.09 us   (2.6%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 365.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035566434740018756                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2690e+05 | 452096 |      1 | 4.878e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.624960422353205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09917917548932892, dt = 0.00035566434740018756
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 326.62 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556856382322163                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8841e+05 | 452096 |      1 | 5.089e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.516097816696856 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0995348398367291, dt = 0.0003556856382322163
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 351.86 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557099249110631                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8668e+05 | 452096 |      1 | 5.099e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5113321794346977 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09989052547496131, dt = 0.0003557099249110631
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 334.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035573719107544205                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0956e+05 | 452096 |      1 | 4.971e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5763101226869525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10024623539987237, dt = 0.00035573719107544205
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.7%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 303.07 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557348793761251                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9317e+05 | 452096 |      1 | 5.062e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.530090931904431 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10060197259094782, dt = 0.00028038035022866226
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.2%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 369.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035572115055967083                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7788e+05 | 452096 |      1 | 5.150e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9599975898774986 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 182.50866354000001 (s)                                   [Godunov][rank=0]
snapshot 49 time 0.10088235294117648
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.10088235294117648, dt = 0.00035572115055967083
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.68 us    (2.4%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 376.74 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035570636706309234                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3285e+05 | 452096 |      1 | 5.428e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.359112930438459 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10123807409173614, dt = 0.00035570636706309234
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.6%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 362.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556945973183285                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3537e+05 | 452096 |      1 | 5.412e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.366138836007051 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10159378045879923, dt = 0.0003556945973183285
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 378.14 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17344

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1360

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.00036461578955370957                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9820e+05 | 394752 |      1 | 4.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5891969636790066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10194947505611755, dt = 0.00036461578955370957
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 342.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9152

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Will refine      1024    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  54720              [AMR Grid][rank=0]
Info: cfl dt = 0.0003637159911896111                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.8852e+05 | 437760 |      1 | 4.428e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9640496538682157 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10231409084567127, dt = 0.0003637159911896111
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 344.40 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036291790678882906                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9922e+05 | 437760 |      1 | 4.868e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.689634167441987 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10267780683686088, dt = 0.00026336963372736166
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 369.65 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003623985864467319                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3313e+05 | 437760 |      1 | 4.691e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.021036088893085 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 187.219764222 (s)                                        [Godunov][rank=0]
snapshot 50 time 0.10294117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.10294117647058824, dt = 0.0003623985864467319
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.34 us    (2.3%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036174383940340874                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6507e+05 | 437760 |      1 | 5.060e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5781368604426107 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10330357505703498, dt = 0.00036174383940340874
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 334.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (59.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036115830379897305                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4047e+05 | 437760 |      1 | 4.655e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.79776942085129 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10366531889643839, dt = 0.00036115830379897305
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 354.02 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (59.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036063339497920035                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3277e+05 | 437760 |      1 | 4.693e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7703739367299676 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10402647720023736, dt = 0.00036063339497920035
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 374.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003601617449415133                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3408e+05 | 437760 |      1 | 4.687e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7702369063298242 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10438711059521656, dt = 0.0003601617449415133
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 336.62 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003597370096250846                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0057e+05 | 437760 |      1 | 5.468e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3711746520281953 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10474727234015807, dt = 0.00025272765984193923
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 400.76 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035946584229796825                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1410e+05 | 437760 |      1 | 5.377e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6919814199796037 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 191.922781586 (s)                                        [Godunov][rank=0]
snapshot 51 time 0.10500000000000001
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.10500000000000001, dt = 0.00035946584229796825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.82 us    (2.4%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 392.55 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035910854324509785                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4503e+05 | 437760 |      1 | 5.180e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.49801225803703 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10535946584229798, dt = 0.00035910854324509785
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 341.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035878547209195627                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1216e+05 | 437760 |      1 | 4.799e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.693790645187814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10571857438554308, dt = 0.00035878547209195627
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 315.99 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035849514306065123                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0373e+05 | 437760 |      1 | 4.844e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6664981269223547 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10607735985763504, dt = 0.00035849514306065123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 369.56 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035823393163631894                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1788e+05 | 437760 |      1 | 4.769e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7060529284376336 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10643585500069569, dt = 0.00035823393163631894
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 24.97 us   (6.3%)
   LB compute        : 350.68 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579986666522948                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7619e+05 | 437760 |      1 | 4.996e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.581255581694169 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10679408893233201, dt = 0.0002647345970797632
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 345.64 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578409022982114                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1701e+05 | 437760 |      1 | 5.358e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.778710990936987 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 196.62054547600002 (s)                                   [Godunov][rank=0]
snapshot 52 time 0.10705882352941178
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.10705882352941178, dt = 0.0003578409022982114
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.56 us    (2.2%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 401.90 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035764423236425545                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4293e+05 | 437760 |      1 | 4.643e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.774827108521492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10741666443170998, dt = 0.00035764423236425545
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 380.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035746669062719787                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3781e+05 | 437760 |      1 | 4.668e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.758245154238035 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10777430866407424, dt = 0.00035746669062719787
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 360.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035730632185796356                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3478e+05 | 437760 |      1 | 4.683e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7479668201006664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10813177535470143, dt = 0.00035730632185796356
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 398.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035716140212721444                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0525e+05 | 437760 |      1 | 4.836e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6599714717351515 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10848908167655939, dt = 0.00035716140212721444
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.4%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 349.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035703040943127023                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3208e+05 | 437760 |      1 | 4.697e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.737693553205088 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10884624307868661, dt = 0.00027140398013693334
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 399.98 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (71.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569399122551485                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4246e+05 | 437760 |      1 | 4.645e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.103521032298874 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 201.17812107700001 (s)                                   [Godunov][rank=0]
snapshot 53 time 0.10911764705882354
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.10911764705882354, dt = 0.0003569399122551485
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.58 us    (2.5%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 363.58 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (71.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035683020789475234                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3895e+05 | 437760 |      1 | 4.662e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.756146532797495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10947458697107869, dt = 0.00035683020789475234
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 378.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035673108659261795                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4541e+05 | 437760 |      1 | 4.630e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.774261924368777 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10983141717897343, dt = 0.00035673108659261795
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 327.57 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (71.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035664158445088465                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5473e+05 | 437760 |      1 | 5.122e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.507486447088291 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11018814826556605, dt = 0.00035664158445088465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 322.83 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356560845703866                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4166e+05 | 437760 |      1 | 4.649e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.761812961783962 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11054478985001694, dt = 0.000356560845703866
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 356.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564881097881225                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3720e+05 | 437760 |      1 | 4.671e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.748091696434687 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1109013506957208, dt = 0.00027511989251451097
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 317.20 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356437356054448                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3723e+05 | 437760 |      1 | 4.671e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.12047967044567 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 205.74408621700002 (s)                                   [Godunov][rank=0]
snapshot 54 time 0.11117647058823531
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11117647058823531, dt = 0.000356437356054448
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.13 us   (2.4%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 392.66 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563769726517788                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2438e+05 | 437760 |      1 | 4.736e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7095746690780347 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11153290794428976, dt = 0.0003563769726517788
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 390.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (70.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563220386006033                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3761e+05 | 437760 |      1 | 4.669e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.747881363596079 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11188928491694154, dt = 0.0003563220386006033
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 385.02 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (70.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035627213380023064                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3729e+05 | 437760 |      1 | 5.228e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.453488839578292 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224560695554214, dt = 0.00035627213380023064
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.7%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 346.13 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (69.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035622688386352183                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2999e+05 | 437760 |      1 | 4.707e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7247448693200074 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11260187908934237, dt = 0.00035622688386352183
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 373.89 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561859547200961                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1324e+05 | 437760 |      1 | 4.794e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6753198820716704 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1129581059732059, dt = 0.0002771881444411789
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 393.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561570377336809                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1358e+05 | 437760 |      1 | 4.792e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0825132889776037 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 210.39182819400003 (s)                                   [Godunov][rank=0]
snapshot 55 time 0.11323529411764707
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11323529411764707, dt = 0.0003561570377336809
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.65 us    (2.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 357.29 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035612306209831257                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2399e+05 | 437760 |      1 | 4.738e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.706297861399633 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11359145115538076, dt = 0.00035612306209831257
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 314.66 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560926539667118                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3094e+05 | 437760 |      1 | 4.702e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.726397544576327 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11394757421747907, dt = 0.0003560926539667118
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 377.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035606559533217974                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3235e+05 | 437760 |      1 | 4.695e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7303017839288746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11430366687144579, dt = 0.00035606559533217974
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 355.45 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035604169162102063                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4555e+05 | 437760 |      1 | 5.177e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4759292891130955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11465973246677796, dt = 0.00035604169162102063
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 361.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560207691324277                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2928e+05 | 437760 |      1 | 4.711e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.720916415359173 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11501577415839899, dt = 0.00027834348865983516
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 355.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560064608952874                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8429e+05 | 437760 |      1 | 4.950e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0241531466864093 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 215.03182437400002 (s)                                   [Godunov][rank=0]
snapshot 56 time 0.11529411764705882
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11529411764705882, dt = 0.0003560064608952874
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.58 us    (2.4%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 376.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (71.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559904716098759                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0832e+05 | 437760 |      1 | 4.819e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.659278649651595 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11565012410795411, dt = 0.0003559904716098759
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 390.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559770724962679                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2940e+05 | 437760 |      1 | 5.278e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4281123845967127 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11600611457956399, dt = 0.0003559770724962679
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 383.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559661505076448                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3150e+05 | 437760 |      1 | 4.700e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7269221177174687 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11636209165206025, dt = 0.0003559661505076448
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 372.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (70.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559576050445462                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7388e+05 | 437760 |      1 | 5.009e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.558167123633885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1167180578025679, dt = 0.0003559576050445462
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 330.26 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559513495229481                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3950e+05 | 437760 |      1 | 4.659e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.750194603649728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11707401540761245, dt = 0.00027892576885814313
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 385.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (65.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035594803380340607                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3674e+05 | 437760 |      1 | 4.673e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1486903118655882 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 219.70475511400002 (s)                                   [Godunov][rank=0]
snapshot 57 time 0.11735294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11735294117647059, dt = 0.00035594803380340607
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.57 us    (2.3%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.48 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035594567019831837                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4114e+05 | 437760 |      1 | 4.651e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.754908031668614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11770888921027399, dt = 0.00035594567019831837
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 383.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559453965572066                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4209e+05 | 437760 |      1 | 4.647e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.757678541502083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11806483488047231, dt = 0.0003559453965572066
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 369.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035594715421422197                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3837e+05 | 437760 |      1 | 4.665e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7467873297901932 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11842078027702951, dt = 0.00035594715421422197
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 361.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559509506336343                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3254e+05 | 437760 |      1 | 4.694e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7297283518776156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11877672743124373, dt = 0.0003559509506336343
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 384.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559570800580253                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3823e+05 | 437760 |      1 | 4.666e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7464212732340543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11913267838187737, dt = 0.00027908632400498734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.7%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 349.72 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559635027833059                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4131e+05 | 437760 |      1 | 4.651e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1604250092066066 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 224.26263561500002 (s)                                   [Godunov][rank=0]
snapshot 58 time 0.11941176470588236
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11941176470588236, dt = 0.0003559635027833059
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.63 us   (2.6%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 387.19 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035597354632117806                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2959e+05 | 437760 |      1 | 4.709e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7212137496275997 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11976772820866566, dt = 0.00035597354632117806
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.4%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 413.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (67.7%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15552

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1040

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Will refine      1280    blocks


Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  56512              [AMR Grid][rank=0]
Info: cfl dt = 0.00036413320088683407                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8803e+05 | 452096 |      1 | 5.091e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.517203260820787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12012370175498684, dt = 0.00036413320088683407
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 377.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (61.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036333404509934157                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0733e+05 | 452096 |      1 | 4.983e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6308719606556585 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12048783495587367, dt = 0.00036333404509934157
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 364.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000362625060947369                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7677e+05 | 452096 |      1 | 5.156e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5366698665122756 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12085116900097302, dt = 0.000362625060947369
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 318.69 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (71.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036199448677696474                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2292e+05 | 452096 |      1 | 4.899e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.664992685465507 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12121379406192039, dt = 0.00025679417337373667
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 364.57 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003615927470547841                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9729e+05 | 452096 |      1 | 5.670e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.630312483076958 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 229.08654180500002 (s)                                   [Godunov][rank=0]
snapshot 59 time 0.12147058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.12147058823529412, dt = 0.0003615927470547841
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.97 us    (2.3%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 403.20 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003610733604475522                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4083e+05 | 452096 |      1 | 4.805e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.708974033350868 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12183218098234891, dt = 0.0003610733604475522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 396.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003606084957604412                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3255e+05 | 452096 |      1 | 4.848e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6812502800883222 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12219325434279646, dt = 0.0003606084957604412
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 393.67 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003601915179063766                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4528e+05 | 452096 |      1 | 4.783e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7143562617042973 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1225538628385569, dt = 0.0003601915179063766
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 371.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035981669882942965                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0268e+05 | 452096 |      1 | 5.008e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5890283102192493 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12291405435646328, dt = 0.00035981669882942965
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 345.62 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003594790816086272                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4858e+05 | 452096 |      1 | 4.766e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.717856904257081 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12327387105529271, dt = 0.0002555407094131795
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 364.15 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035926101779900884                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3204e+05 | 452096 |      1 | 4.851e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8965645972660683 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 233.810319074 (s)                                        [Godunov][rank=0]
snapshot 60 time 0.12352941176470589
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.12352941176470589, dt = 0.00035926101779900884
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.57 us   (2.7%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 368.82 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (73.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003589771879056348                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4242e+05 | 452096 |      1 | 4.797e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.696038416300737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1238886727825049, dt = 0.0003589771879056348
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 355.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035872016717597617                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1239e+05 | 452096 |      1 | 4.955e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.608058907315174 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12424764997041053, dt = 0.00035872016717597617
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 326.44 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035848698685732116                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2991e+05 | 452096 |      1 | 4.862e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6562562911144774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1246063701375865, dt = 0.00035848698685732116
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 362.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  18368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1552

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.0003582750507326702                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9582e+05 | 394752 |      1 | 4.960e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6017685783606037 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12496485712444383, dt = 0.0003582750507326702
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 392.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580820837748992                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1345e+05 | 394752 |      1 | 4.322e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.984550818669152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1253231321751765, dt = 0.000265103118941179
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 335.86 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035795105255491817                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2194e+05 | 394752 |      1 | 4.282e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2289253754685774 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 238.47934997200002 (s)                                   [Godunov][rank=0]
snapshot 61 time 0.12558823529411767
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.12558823529411767, dt = 0.00035795105255491817
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.76 us    (2.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 349.51 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577864170887574                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2261e+05 | 394752 |      1 | 4.279e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.011743367110502 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1259461863466726, dt = 0.0003577864170887574
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 380.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035763586544157623                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1808e+05 | 394752 |      1 | 4.300e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9955992163820904 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12630397276376135, dt = 0.00035763586544157623
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.21 us    (0.5%)
   LB compute        : 391.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574979930132603                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2876e+05 | 394752 |      1 | 4.250e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.029161084096378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12666160862920292, dt = 0.0003574979930132603
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 337.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573722168528232                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1890e+05 | 394752 |      1 | 4.296e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9958597796595776 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1270191066222162, dt = 0.0003573722168528232
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 351.11 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035725764331242046                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1093e+05 | 394752 |      1 | 4.333e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9688289790438347 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12737647883906902, dt = 0.0002705799844603951
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 303.01 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571781180890743                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2082e+05 | 394752 |      1 | 4.287e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.272203224437458 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 242.93970985200002 (s)                                   [Godunov][rank=0]
snapshot 62 time 0.12764705882352942
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.12764705882352942, dt = 0.0003571781180890743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 30.74 us   (7.4%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 373.29 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035708061962511133                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8661e+05 | 394752 |      1 | 5.018e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5622582644884018 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1280042369416185, dt = 0.00035708061962511133
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 331.91 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035699160621225734                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2565e+05 | 394752 |      1 | 4.781e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6886850035744425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1283613175612436, dt = 0.00035699160621225734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 330.44 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569102890843948                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8960e+05 | 394752 |      1 | 4.437e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.896204789687008 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12871830916745586, dt = 0.0003569102890843948
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.01 us   (3.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 318.90 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568359656352887                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2886e+05 | 394752 |      1 | 4.250e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.023333847577879 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12907521945654024, dt = 0.0003568359656352887
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 410.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567680092155343                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6786e+05 | 394752 |      1 | 4.549e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.82420379648773 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12943205542217553, dt = 0.0002738269307656638
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 370.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567200735155146                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2567e+05 | 394752 |      1 | 4.265e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.311581063649793 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 247.34236315200002 (s)                                   [Godunov][rank=0]
snapshot 63 time 0.1297058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.1297058823529412, dt = 0.0003567200735155146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.92 us    (2.5%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 376.15 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566620194678608                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2191e+05 | 394752 |      1 | 4.282e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.99912003871801 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1300626024264567, dt = 0.0003566620194678608
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 398.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566089263872246                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1842e+05 | 394752 |      1 | 4.298e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9872773783590834 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13041926444592455, dt = 0.0003566089263872246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 393.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565603824232928                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2497e+05 | 394752 |      1 | 4.268e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0081529763227213 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13077587337231178, dt = 0.0003565603824232928
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 396.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035651601817103415                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2268e+05 | 394752 |      1 | 4.278e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0002795853506457 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13113243375473507, dt = 0.00035651601817103415
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 24.24 us   (6.0%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 361.10 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564754475000799                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1972e+05 | 394752 |      1 | 4.292e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.990293625709035 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1314889497729061, dt = 0.00027575610944685636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 374.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356446315090786                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2921e+05 | 394752 |      1 | 4.248e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.336772372336518 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 251.57115872800003 (s)                                   [Godunov][rank=0]
snapshot 64 time 0.13176470588235295
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.13176470588235295, dt = 0.000356446315090786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.69 us    (1.6%)
   patch tree reduce : 1.22 us    (0.2%)
   gen split merge   : 582.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.1%)
   LB compute        : 568.15 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035641107740708926                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1140e+05 | 394752 |      1 | 4.331e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9626541928839916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13212115219744375, dt = 0.00035641107740708926
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.6%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 313.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563785524211381                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8968e+05 | 394752 |      1 | 4.437e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8917670865468668 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13247756327485083, dt = 0.0003563785524211381
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 314.54 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563485503781593                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6867e+05 | 394752 |      1 | 4.544e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8232134802334556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13283394182727196, dt = 0.0003563485503781593
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 321.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563208999349567                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7638e+05 | 394752 |      1 | 4.504e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8480265767196102 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13319029037765012, dt = 0.0003563208999349567
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 323.90 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035629544626023744                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2468e+05 | 394752 |      1 | 4.269e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.004759505011244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13354661127758508, dt = 0.00027691813417962674
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.09 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 419.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (72.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9152

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562771508802584                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1501e+05 | 394752 |      1 | 4.314e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.310757005584968 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 255.88365638800002 (s)                                   [Godunov][rank=0]
snapshot 65 time 0.1338235294117647
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.1338235294117647, dt = 0.0003562771508802584
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.80 us    (2.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 361.15 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9152

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035625526009890605                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2971e+05 | 394752 |      1 | 4.246e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0207575660887973 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13417980656264497, dt = 0.00035625526009890605
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 353.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035623520957661864                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2654e+05 | 394752 |      1 | 4.776e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.685356135144066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13453606182274389, dt = 0.00035623520957661864
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 323.44 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562168932770634                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2875e+05 | 394752 |      1 | 4.250e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0172558591538032 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1348922970323205, dt = 0.0003562168932770634
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 315.84 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (60.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562002062028407                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1952e+05 | 394752 |      1 | 4.293e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9871422283394784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13524851392559756, dt = 0.0003562002062028407
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.6%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 391.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 9.95 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561850476838336                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2230e+05 | 394752 |      1 | 4.280e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9960326592936473 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1356047141318004, dt = 0.00027763880937609065
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 354.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035617428629736516                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2377e+05 | 394752 |      1 | 4.273e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3389512792680085 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 260.176667091 (s)                                        [Godunov][rank=0]
snapshot 66 time 0.13588235294117648
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.13588235294117648, dt = 0.00035617428629736516
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.59 us    (2.1%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 428.83 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561618713892584                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0975e+05 | 394752 |      1 | 4.875e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6302039581698424 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13623852722747384, dt = 0.0003561618713892584
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 372.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035615130911454123                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2053e+05 | 394752 |      1 | 4.288e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9899322272468494 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1365946890988631, dt = 0.00035615130911454123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 383.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561424531109491                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2420e+05 | 394752 |      1 | 4.271e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0017801235030555 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13695084040797764, dt = 0.0003561424531109491
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 365.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035613517166582835                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4489e+05 | 394752 |      1 | 4.672e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.744107213833622 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13730698286108858, dt = 0.00035613517166582835
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.4%)
   LB compute        : 389.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1552

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  42176              [AMR Grid][rank=0]
Info: cfl dt = 0.00036490600182273285                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7465e+05 | 337408 |      1 | 4.356e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.943505808343005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1376631180327544, dt = 0.00027805843783382245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 405.77 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Will refine      1024    blocks


Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  47552              [AMR Grid][rank=0]
Info: cfl dt = 0.0003642503395711069                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.5558e+05 | 380416 |      1 | 3.981e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5144637026715944 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 264.504616483 (s)                                        [Godunov][rank=0]
snapshot 67 time 0.13794117647058823
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
analysis done
amr::Godunov: t = 0.13794117647058823, dt = 0.0003642503395711069
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.57 us    (2.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 363.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036347059352199003                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0585e+05 | 380416 |      1 | 4.200e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.122494007613799 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13830542681015934, dt = 0.00036347059352199003
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 316.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003627783738466786                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8718e+05 | 380416 |      1 | 4.288e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0515882735255047 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13866889740368132, dt = 0.0003627783738466786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 382.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003621622861285661                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0883e+05 | 380416 |      1 | 4.186e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.120100577180014 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.139031675777528, dt = 0.0003621622861285661
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 354.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036161261654490154                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0025e+05 | 380416 |      1 | 4.226e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.085377294056734 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13939383806365657, dt = 0.00036161261654490154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 370.04 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036112105174535914                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0542e+05 | 380416 |      1 | 4.202e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0983973513874052 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13975545068020148, dt = 0.00024454931979853156
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 389.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036082032369468085                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1362e+05 | 380416 |      1 | 4.164e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1143539176012327 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 268.69887590400003 (s)                                   [Godunov][rank=0]
snapshot 68 time 0.14
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
analysis done
amr::Godunov: t = 0.14, dt = 0.00036082032369468085
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.54 us    (2.3%)
   patch tree reduce : 1.15 us    (0.3%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 389.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036041035819464384                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4806e+05 | 380416 |      1 | 4.486e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8957569525024454 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403608203236947, dt = 0.00036041035819464384
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 331.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036004156614390635                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6826e+05 | 380416 |      1 | 4.381e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9613574287088715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14072123068188935, dt = 0.00036004156614390635
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 441.38 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035970911875267354                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4209e+05 | 380416 |      1 | 4.518e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.869149032534503 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14108127224803327, dt = 0.00035970911875267354
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.3%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 368.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003594088249602862                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1649e+05 | 380416 |      1 | 4.151e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1197752311343163 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14144098136678593, dt = 0.0003594088249602862
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 349.31 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003591370384920745                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1292e+05 | 380416 |      1 | 4.167e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.105029328677461 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14180039019174623, dt = 0.0002584333376655368
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 355.08 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1280    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035895856126585713                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0133e+06 | 452096 |      1 | 4.462e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.085193879784232 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 272.95931425000003 (s)                                   [Godunov][rank=0]
snapshot 69 time 0.14205882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.14205882352941177, dt = 0.00035895856126585713
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.90 us    (2.3%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 408.67 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (71.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1024    blocks


Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035872845514969473                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0202e+06 | 509440 |      1 | 4.993e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5879206725106587 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14241778209067762, dt = 0.00035872845514969473
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 341.17 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035851913954692855                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2859e+05 | 509440 |      1 | 5.486e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3539556888006916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14277651054582732, dt = 0.00035851913954692855
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 355.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003583284031088751                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2190e+05 | 509440 |      1 | 5.526e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.335641725188025 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14313502968537425, dt = 0.0003583284031088751
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 353.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581543035787371                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9768e+05 | 509440 |      1 | 5.675e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.273058350571826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14349335808848313, dt = 0.0003581543035787371
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.6%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 364.34 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579951319502703                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3041e+05 | 509440 |      1 | 5.475e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3547979876814273 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14385151239206187, dt = 0.00026613466676167485
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 382.57 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035788618182171195                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3264e+05 | 509440 |      1 | 5.462e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7539802983459065 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 278.084060969 (s)                                        [Godunov][rank=0]
snapshot 70 time 0.14411764705882354
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.14411764705882354, dt = 0.00035788618182171195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.55 us    (2.3%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 384.48 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357749479574127                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8840e+05 | 509440 |      1 | 5.734e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2467893532415912 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14447553324064524, dt = 0.000357749479574127
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.3%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 370.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576239875206826                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2357e+05 | 509440 |      1 | 5.516e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3348497347822534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14483328272021936, dt = 0.0003576239875206826
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 372.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035750862981136656                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2513e+05 | 509440 |      1 | 5.507e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3379603779931726 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14519090670774004, dt = 0.00035750862981136656
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 357.14 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (62.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035740245221293696                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0893e+05 | 509440 |      1 | 5.605e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2962800773910126 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14554841533755142, dt = 0.00035740245221293696
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 319.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (63.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035730460697154623                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1797e+05 | 509440 |      1 | 5.550e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.318434802807968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14590581778976436, dt = 0.00027065279847093837
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 374.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (60.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572360872195622                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2751e+05 | 509440 |      1 | 5.493e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7739494882953617 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 283.45076342100003 (s)                                   [Godunov][rank=0]
snapshot 71 time 0.1461764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.1461764705882353, dt = 0.0003572360872195622
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.58 us    (2.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 379.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035715184270650337                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2925e+05 | 509440 |      1 | 5.482e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.345845604544397 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14653370667545487, dt = 0.00035715184270650337
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 385.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570746318944794                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1612e+05 | 509440 |      1 | 5.561e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.312151697227932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1468908585181614, dt = 0.0003570746318944794
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 366.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570038297704663                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0258e+05 | 509440 |      1 | 5.644e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2774834439132245 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14724793315005585, dt = 0.0003570038297704663
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 378.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569388767725989                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1588e+05 | 509440 |      1 | 5.562e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3105731059163364 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14760493697982632, dt = 0.0003569388767725989
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 322.78 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568792715074834                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1876e+05 | 509440 |      1 | 5.545e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3174267537965556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14796187585659892, dt = 0.0002734182610481528
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 345.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035683715317367024                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9972e+05 | 509440 |      1 | 5.662e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7383752669283237 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 288.821457983 (s)                                        [Godunov][rank=0]
snapshot 72 time 0.14823529411764708
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.14823529411764708, dt = 0.00035683715317367024
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.25 us   (2.5%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 386.62 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035678591681224546                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1615e+05 | 509440 |      1 | 6.242e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.058027037900629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14859213127082074, dt = 0.00035678591681224546
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 385.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035673890497644225                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2425e+05 | 509440 |      1 | 5.512e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3302650127664797 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14894891718763298, dt = 0.00035673890497644225
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 361.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566957832175324                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2140e+05 | 509440 |      1 | 5.529e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.322769932727199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14930565609260943, dt = 0.0003566957832175324
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 375.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566562484878023                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1251e+05 | 509440 |      1 | 5.583e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3000797553523853 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966235187582697, dt = 0.0003566562484878023
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 324.09 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356620025967935                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2757e+05 | 509440 |      1 | 5.492e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.337781815186803 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15001900812431476, dt = 0.00027510952274406586
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 391.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035659419766502937                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9154e+05 | 509440 |      1 | 5.714e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7332356012159165 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 294.28200412 (s)                                         [Godunov][rank=0]
snapshot 73 time 0.15029411764705883
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.15029411764705883, dt = 0.00035659419766502937
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.49 us    (2.3%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 391.89 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035656281613972556                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0523e+05 | 509440 |      1 | 5.628e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.281103636697498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15065071184472387, dt = 0.00035656281613972556
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.4%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 329.95 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035653378893745315                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2566e+05 | 509440 |      1 | 5.504e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3323556029238173 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15100727466086358, dt = 0.00035653378893745315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 378.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035650695228793853                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4882e+05 | 509440 |      1 | 6.002e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.138574751841714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15136380844980105, dt = 0.00035650695228793853
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 348.66 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564821571382385                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2073e+05 | 509440 |      1 | 5.533e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3195729347852763 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.151720315402089, dt = 0.0003564821571382385
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 381.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564592677721717                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2201e+05 | 509440 |      1 | 5.525e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.322657837237168 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15207679755922723, dt = 0.000276143617243374
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.3%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 373.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8128

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564428183548089                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6211e+05 | 509440 |      1 | 5.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6823164637638324 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 299.905422515 (s)                                        [Godunov][rank=0]
snapshot 74 time 0.1523529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.1523529411764706, dt = 0.0003564428183548089
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.45 us    (2.1%)
   patch tree reduce : 1.16 us    (0.3%)
   gen split merge   : 472.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 419.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (73.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8128

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035642300946710356                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1877e+05 | 509440 |      1 | 5.545e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3142319696566878 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15270938399482542, dt = 0.00035642300946710356
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 361.90 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8128

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035640479007379664                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1305e+05 | 509440 |      1 | 5.580e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2996994125039696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15306580700429254, dt = 0.00035640479007379664
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 388.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8128

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563880646421065                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2770e+05 | 509440 |      1 | 5.491e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.336479251536143 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342221179436633, dt = 0.0003563880646421065
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 340.52 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8128

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563727461000589                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9636e+05 | 509440 |      1 | 5.683e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.257423708041152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15377859985900844, dt = 0.0003563727461000589
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 340.88 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8128

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035635876079199535                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2266e+05 | 509440 |      1 | 5.521e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.323561133451594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1541349726051085, dt = 0.0002767921007738594
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 335.92 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8128

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035634915216769565                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2077e+05 | 509440 |      1 | 5.533e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8009967465909082 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 305.278461196 (s)                                        [Godunov][rank=0]
snapshot 75 time 0.15441176470588236
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.15441176470588236, dt = 0.00035634915216769565
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.24 us    (2.4%)
   patch tree reduce : 1.12 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 368.41 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8128

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563381053405156                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2975e+05 | 509440 |      1 | 5.479e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.341268055527858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15476811385805006, dt = 0.0003563381053405156
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 346.29 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8128

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563285408469587                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5479e+05 | 509440 |      1 | 5.960e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1524288148878377 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15512445196339059, dt = 0.0003563285408469587
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (0.7%)
   patch tree reduce : 1.42 us    (0.2%)
   gen split merge   : 1.11 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.1%)
   LB compute        : 774.49 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12224

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1296

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  56512              [AMR Grid][rank=0]
Info: cfl dt = 0.00036500275788370546                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0344e+05 | 452096 |      1 | 5.627e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2797005351090545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15548078050423755, dt = 0.00036500275788370546
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.3%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 368.12 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (62.1%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4032

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1344    blocks


Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003641482500918436                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0360e+06 | 527360 |      1 | 5.090e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.581402926021171 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15584578326212126, dt = 0.0003641482500918436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.4%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 363.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036339168043303914                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2960e+05 | 527360 |      1 | 5.673e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3108365106559146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1562099315122131, dt = 0.0002606567230810375
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 398.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (73.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629063973639615                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1938e+05 | 527360 |      1 | 5.736e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6359088178532333 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 310.68124019000004 (s)                                   [Godunov][rank=0]
snapshot 76 time 0.15647058823529414
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.15647058823529414, dt = 0.0003629063973639615
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.88 us    (2.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 359.52 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003622883844879574                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3187e+05 | 527360 |      1 | 5.659e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.308576629447067 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1568334946326581, dt = 0.0003622883844879574
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 377.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003617375472305405                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2193e+05 | 527360 |      1 | 5.720e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2800740313864005 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15719578301714607, dt = 0.0003617375472305405
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 316.37 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (63.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036124545601970556                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2914e+05 | 527360 |      1 | 5.676e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2944104033166264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1575575205643766, dt = 0.00036124545601970556
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.7%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 339.98 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036080486624304306                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6345e+05 | 527360 |      1 | 6.108e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1292889427588686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1579187660203963, dt = 0.00036080486624304306
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 339.16 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000360409531964523                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1662e+05 | 527360 |      1 | 5.753e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.257655958151184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15827957088663935, dt = 0.0002498408780665373
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 378.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (60.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036016130988511725                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2532e+05 | 527360 |      1 | 5.699e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5781547188156495 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 316.25261492600004 (s)                                   [Godunov][rank=0]
snapshot 77 time 0.1585294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.1585294117647059, dt = 0.00036016130988511725
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.41 us    (2.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 344.12 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035983042566461944                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3802e+05 | 527360 |      1 | 5.622e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3062380106971263 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.158889573074591, dt = 0.00035983042566461944
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.6%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 343.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003595318683776639                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1859e+05 | 527360 |      1 | 5.741e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2563939698504414 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15924940350025563, dt = 0.0003595318683776639
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 369.24 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035926193893584773                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3100e+05 | 527360 |      1 | 5.664e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2849908957832294 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1596089353686333, dt = 0.00035926193893584773
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 402.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000359017429239567                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2407e+05 | 527360 |      1 | 5.707e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2662750965641987 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15996819730756914, dt = 0.000359017429239567
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 352.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003587955357394738                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2039e+05 | 527360 |      1 | 5.730e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2557055576304417 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16032721473680872, dt = 0.0002610205573089497
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 350.82 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035864789060546267                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0232e+05 | 527360 |      1 | 5.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6077944333010485 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 321.82542295300004 (s)                                   [Godunov][rank=0]
snapshot 78 time 0.16058823529411767
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.16058823529411767, dt = 0.00035864789060546267
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.57 us    (2.5%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 368.11 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (73.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035845935253987245                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2495e+05 | 527360 |      1 | 5.702e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.26453897493 (tsim/hr)                                [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16094688318472314, dt = 0.00035845935253987245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 351.77 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (71.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003582874331335099                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3094e+05 | 527360 |      1 | 5.665e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2780075936963615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.161305342537263, dt = 0.0003582874331335099
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.6%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 325.97 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035813040458349536                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2613e+05 | 527360 |      1 | 5.694e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2651612161614625 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16166362997039652, dt = 0.00035813040458349536
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 341.81 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579867434201803                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2586e+05 | 527360 |      1 | 5.696e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.263508701805789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16202176037498, dt = 0.0003579867434201803
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 337.40 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578551041597933                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0278e+05 | 527360 |      1 | 5.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.206191780371092 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1623797471184002, dt = 0.0002673117051292251
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 342.30 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (62.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357764382112938                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2510e+05 | 527360 |      1 | 5.701e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6881224470019547 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 327.39031592500004 (s)                                   [Godunov][rank=0]
snapshot 79 time 0.16264705882352942
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.16264705882352942, dt = 0.000357764382112938
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.00 us   (2.6%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 361.51 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035765092390075895                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5610e+05 | 527360 |      1 | 6.160e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0908303972515085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16300482320564236, dt = 0.00035765092390075895
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 381.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035754653884001605                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2923e+05 | 527360 |      1 | 5.675e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2686948362268486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1633624741295431, dt = 0.00035754653884001605
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.3%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 386.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035745036967722654                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2551e+05 | 527360 |      1 | 5.698e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.258970614981031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16372002066838312, dt = 0.00035745036967722654
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.1%)
   patch tree reduce : 1.51 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 470.22 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (72.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035736165368439594                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3055e+05 | 527360 |      1 | 5.667e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2706552049404847 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16407747103806034, dt = 0.00035736165368439594
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1.44 us    (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 394.08 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035727971800259255                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2201e+05 | 527360 |      1 | 5.720e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.249250056348874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16443483269174472, dt = 0.0002710496611964819
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 354.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572219645775008                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2716e+05 | 527360 |      1 | 5.688e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7155354341947404 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 332.97471772800003 (s)                                   [Godunov][rank=0]
snapshot 80 time 0.1647058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.1647058823529412, dt = 0.0003572219645775008
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.34 us    (2.4%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 372.77 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035715051927125483                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2706e+05 | 527360 |      1 | 5.689e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2606937121192066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1650631043175187, dt = 0.00035715051927125483
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 354.94 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035708435301805947                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9349e+05 | 527360 |      1 | 5.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.178392579875282 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16542025483678996, dt = 0.00035708435301805947
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 351.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570230226147152                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0817e+05 | 527360 |      1 | 5.807e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.213778602135931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16577733918980803, dt = 0.0003570230226147152
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 356.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035696612938937054                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3214e+05 | 527360 |      1 | 5.658e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.271819230403225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16613436221242275, dt = 0.00035696612938937054
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 357.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569133141366835                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3190e+05 | 527360 |      1 | 5.659e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2708728564346146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16649132834181213, dt = 0.00027337754054082564
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 359.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (60.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568757544731593                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5525e+05 | 527360 |      1 | 6.166e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5960656576776115 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 338.63069294 (s)                                         [Godunov][rank=0]
snapshot 81 time 0.16676470588235295
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.16676470588235295, dt = 0.0003568757544731593
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.99 us    (2.7%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 350.18 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568298123810219                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3735e+05 | 527360 |      1 | 5.626e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.28358009490966 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1671215816368261, dt = 0.0003568298123810219
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 360.27 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (72.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567873592336289                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0981e+05 | 527360 |      1 | 5.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2161844968157602 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16747841144920714, dt = 0.0003567873592336289
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 357.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (62.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035674811945501787                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0137e+05 | 527360 |      1 | 5.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.195375008576524 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16783519880844078, dt = 0.00035674811945501787
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 395.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356711843317832                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1861e+05 | 527360 |      1 | 5.741e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.237108231868637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1681919469278958, dt = 0.000356711843317832
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 330.10 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566783042066516                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1311e+05 | 527360 |      1 | 5.775e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2234903984480785 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16854865877121364, dt = 0.000274870640551067
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.76 us   (7.8%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 313.34 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566542954486264                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2880e+05 | 527360 |      1 | 5.678e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7427841747724786 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 344.212658766 (s)                                        [Godunov][rank=0]
snapshot 82 time 0.1688235294117647
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.1688235294117647, dt = 0.0003566542954486264
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.43 us    (2.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 374.37 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566250423729773                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8851e+05 | 527360 |      1 | 5.935e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1632506551280652 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16918018370721333, dt = 0.0003566250423729773
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 324.49 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565977453761488                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4279e+05 | 527360 |      1 | 5.594e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2952006357352253 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1695368087495863, dt = 0.0003565977453761488
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1.49 us    (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 412.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356572269280407                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3336e+05 | 527360 |      1 | 5.650e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2720775229662866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16989340649496243, dt = 0.000356572269280407
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 376.91 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035654849063411107                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3013e+05 | 527360 |      1 | 5.670e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2640543597913756 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17024997876424283, dt = 0.00035654849063411107
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.4%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 333.02 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (63.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565262965660459                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0250e+05 | 527360 |      1 | 6.571e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.953245694486334 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17060652725487693, dt = 0.0002758256862995523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.6%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 370.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565101888968154                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6532e+05 | 527360 |      1 | 6.094e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6293189992184505 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 349.90910162 (s)                                         [Godunov][rank=0]
snapshot 83 time 0.17088235294117649
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.17088235294117649, dt = 0.0003565101888968154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.32 us    (2.2%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.83 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035649054609496086                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3440e+05 | 527360 |      1 | 5.644e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2740525783998864 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1712388631300733, dt = 0.00035649054609496086
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 347.46 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035647220164302296                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4535e+05 | 527360 |      1 | 5.578e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.300581417626248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17159535367616827, dt = 0.00035647220164302296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 375.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564551584777253                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3309e+05 | 527360 |      1 | 5.652e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2706321514851533 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1719518258778113, dt = 0.0003564551584777253
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 388.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035643968322490504                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3718e+05 | 527360 |      1 | 5.627e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.280466176825475 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17230828103628903, dt = 0.00035643968322490504
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 393.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356425637242462                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2736e+05 | 527360 |      1 | 5.687e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2564752258433267 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17266472071951394, dt = 0.0002764557510742949
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 400.12 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564157401803763                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3533e+05 | 527360 |      1 | 5.638e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7651675178110418 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 355.44957051800003 (s)                                   [Godunov][rank=0]
snapshot 84 time 0.17294117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.17294117647058824, dt = 0.0003564157401803763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.41 us    (2.3%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 359.13 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 24.00 us   (6.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14464

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1616

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  58752              [AMR Grid][rank=0]
Info: cfl dt = 0.000365102661144577                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2194e+05 | 470016 |      1 | 5.718e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2438136774272457 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17329759221076863, dt = 0.000365102661144577
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 424.08 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Will refine      1024    blocks


Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  64128              [AMR Grid][rank=0]
Info: cfl dt = 0.0003642472957041325                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.8500e+05 | 513024 |      1 | 5.208e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5235799436616113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17366269487191321, dt = 0.0003642472957041325
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 336.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036349008264311024                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3077e+05 | 513024 |      1 | 5.512e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3790552907492346 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17402694216761735, dt = 0.00036349008264311024
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.5%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 319.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003628177814444142                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1780e+05 | 513024 |      1 | 5.590e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3410244450681406 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17439043225026046, dt = 0.0003628177814444142
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 317.54 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003622193719607165                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2117e+05 | 513024 |      1 | 5.569e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.345269530979193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1747532500317049, dt = 0.0002467499682951291
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 363.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (70.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003618527267068762                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8024e+05 | 513024 |      1 | 5.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5241315478064434 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 360.931440908 (s)                                        [Godunov][rank=0]
snapshot 85 time 0.17500000000000002
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  138
analysis done
amr::Godunov: t = 0.17500000000000002, dt = 0.0003618527267068762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.90 us    (2.3%)
   patch tree reduce : 1.11 us    (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 402.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036135761176668145                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2447e+05 | 513024 |      1 | 5.549e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.347414755302947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1753618527267069, dt = 0.00036135761176668145
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 356.65 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003609141482203338                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4653e+05 | 513024 |      1 | 5.420e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.400134804344524 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17572321033847357, dt = 0.0003609141482203338
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 354.14 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003605160656561796                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3460e+05 | 513024 |      1 | 5.489e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.366981689224331 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17608412448669392, dt = 0.0003605160656561796
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 317.10 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (72.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003601579460262682                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3466e+05 | 513024 |      1 | 5.489e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3645086581536137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1764446405523501, dt = 0.0003601579460262682
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 344.41 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035983509516512033                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3317e+05 | 513024 |      1 | 5.498e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3584167297294947 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17680479849837635, dt = 0.0002540250310354153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 378.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003596277956573824                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3080e+05 | 513024 |      1 | 5.512e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6592004862464247 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 366.49100825600004 (s)                                   [Godunov][rank=0]
snapshot 86 time 0.17705882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  138
analysis done
amr::Godunov: t = 0.17705882352941177, dt = 0.0003596277956573824
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.88 us    (2.5%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 368.41 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003593558068104433                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2684e+05 | 513024 |      1 | 5.535e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3389612273946687 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17741845132506914, dt = 0.0003593558068104433
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 347.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (59.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035910925485064973                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3677e+05 | 513024 |      1 | 5.477e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.362228156890126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17777780713187957, dt = 0.00035910925485064973
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 367.13 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003588853399543112                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2609e+05 | 513024 |      1 | 5.540e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3337075151497113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1781369163867302, dt = 0.0003588853399543112
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 322.79 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003586816180986785                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4257e+05 | 513024 |      1 | 5.443e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3737520641453096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17849580172668453, dt = 0.0003586816180986785
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 316.91 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (62.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035849594586019053                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2159e+05 | 513024 |      1 | 5.567e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3195974472579985 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1788544833447832, dt = 0.00026316371404033756
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 320.66 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035837079443235345                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3909e+05 | 513024 |      1 | 5.463e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7341871431458338 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 371.90429553800004 (s)                                   [Godunov][rank=0]
snapshot 87 time 0.17911764705882355
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  138
analysis done
amr::Godunov: t = 0.17911764705882355, dt = 0.00035837079443235345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.05 us   (2.6%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 364.67 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035821200943044574                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2309e+05 | 513024 |      1 | 5.558e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.32135144878343 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1794760178532559, dt = 0.00035821200943044574
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 352.32 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035806664931783353                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5878e+05 | 513024 |      1 | 5.974e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.158678772767654 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17983422986268635, dt = 0.00035806664931783353
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 331.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357933377041203                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2561e+05 | 513024 |      1 | 5.543e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.325718042917267 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1801922965120042, dt = 0.000357933377041203
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 374.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (71.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035781100958164237                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5392e+05 | 513024 |      1 | 6.008e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.144795466744787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1805502298890454, dt = 0.00035781100958164237
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 345.29 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035769849837408814                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7863e+05 | 513024 |      1 | 5.839e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2060953420001295 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18090804089862705, dt = 0.0002684296896082461
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.7%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 345.50 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035762035888899313                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9131e+05 | 513024 |      1 | 5.756e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6789040304811875 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 377.503526979 (s)                                        [Godunov][rank=0]
snapshot 88 time 0.1811764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  138
analysis done
amr::Godunov: t = 0.1811764705882353, dt = 0.00035762035888899313
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.74 us    (1.3%)
   patch tree reduce : 1.37 us    (0.2%)
   gen split merge   : 461.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.1%)
   LB compute        : 743.21 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575228853162895                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4266e+05 | 513024 |      1 | 5.442e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3656057173054013 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1815340909471243, dt = 0.0003575228853162895
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 354.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574329506533515                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4192e+05 | 513024 |      1 | 6.094e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1122098264881335 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1818916138324406, dt = 0.0003574329506533515
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.3%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 357.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035734987717531553                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2775e+05 | 513024 |      1 | 5.530e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3269667035025066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18224904678309395, dt = 0.00035734987717531553
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 359.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572730594299996                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3424e+05 | 513024 |      1 | 5.491e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.342690213516049 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18260639666026926, dt = 0.0003572730594299996
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 322.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (60.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572019555787101                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4108e+05 | 513024 |      1 | 5.451e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.359353565471302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18296366971969927, dt = 0.0002716243979478117
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 353.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571516172524738                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3166e+05 | 513024 |      1 | 5.507e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7757951342817124 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 382.98937938 (s)                                         [Godunov][rank=0]
snapshot 89 time 0.18323529411764708
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  138
analysis done
amr::Godunov: t = 0.18323529411764708, dt = 0.0003571516172524738
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.41 us    (2.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 381.24 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035708940581737026                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6095e+05 | 513024 |      1 | 5.959e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.157713535134724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18359244573489955, dt = 0.00035708940581737026
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 319.15 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570316858725408                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0781e+05 | 513024 |      1 | 5.651e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.27475424293825 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1839495351407169, dt = 0.0003570316858725408
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 381.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035697809466582204                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2531e+05 | 513024 |      1 | 5.544e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3182442944059223 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18430656682658944, dt = 0.00035697809466582204
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.3%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 363.24 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (60.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035692830485931017                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2150e+05 | 513024 |      1 | 5.567e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.30834307753913 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18466354492125525, dt = 0.00035692830485931017
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1.90 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 404.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035688202669535756                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3514e+05 | 513024 |      1 | 5.486e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.342189949205403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18502047322611456, dt = 0.000273644420944269
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 365.01 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035684906321454456                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2196e+05 | 513024 |      1 | 5.565e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7703638761377982 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 388.48587674000004 (s)                                   [Godunov][rank=0]
snapshot 90 time 0.18529411764705883
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  138
analysis done
amr::Godunov: t = 0.18529411764705883, dt = 0.00035684906321454456
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.82 us    (2.5%)
   patch tree reduce : 1.15 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 363.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035680875794696064                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2774e+05 | 513024 |      1 | 5.530e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3231350522596363 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18565096671027337, dt = 0.00035680875794696064
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.3%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 365.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035677148024999665                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3572e+05 | 513024 |      1 | 5.483e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3428536810104377 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18600777546822034, dt = 0.00035677148024999665
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 327.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567369996628635                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3178e+05 | 513024 |      1 | 5.506e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3327590369944766 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18636454694847032, dt = 0.0003567369996628635
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.4%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 351.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567051065538493                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2019e+05 | 513024 |      1 | 5.575e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3035134160714104 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1867212839481332, dt = 0.0003567051065538493
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 315.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035667560996475696                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3501e+05 | 513024 |      1 | 5.487e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3404139439073686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18707798905468706, dt = 0.00027495212178355044
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.7%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 318.88 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (63.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566543124762818                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3398e+05 | 513024 |      1 | 5.493e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.802020746572336 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 393.926204883 (s)                                        [Godunov][rank=0]
snapshot 91 time 0.1873529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  138
analysis done
amr::Godunov: t = 0.1873529411764706, dt = 0.0003566543124762818
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.81 us    (2.3%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035662823560383386                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3880e+05 | 513024 |      1 | 5.465e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3495560756463703 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1877095954889469, dt = 0.00035662823560383386
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 334.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (62.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566038940469649                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1647e+05 | 513024 |      1 | 5.598e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.293502704990807 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18806622372455073, dt = 0.0003566038940469649
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 392.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (72.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035658117553735025                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3696e+05 | 513024 |      1 | 5.475e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.344608058512815 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1884228276185977, dt = 0.00035658117553735025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 357.44 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356559975909592                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2981e+05 | 513024 |      1 | 5.518e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.326574239822855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18877940879413505, dt = 0.000356559975909592
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 362.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12672

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565401985472933                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4189e+05 | 513024 |      1 | 5.447e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3566569880754713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18913596877004463, dt = 0.000275795935837736
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 348.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12672

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035652585244199916                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2667e+05 | 513024 |      1 | 5.536e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7934071148508706 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 399.37200694100005 (s)                                   [Godunov][rank=0]
snapshot 92 time 0.18941176470588236
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  138
analysis done
amr::Godunov: t = 0.18941176470588236, dt = 0.00035652585244199916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.01 us   (2.4%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 378.27 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12672

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035650850908985                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2894e+05 | 513024 |      1 | 5.523e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3240392503236427 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18976829055832437, dt = 0.00035650850908985
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 319.86 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12672

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564928015287561                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3963e+05 | 513024 |      1 | 5.460e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.350659184770924 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19012479906741422, dt = 0.0003564928015287561
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 335.32 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.41 us   (94.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12672

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035647859163341313                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4850e+05 | 513024 |      1 | 5.409e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.372764507588531 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19048129186894297, dt = 0.00035647859163341313
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 353.05 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 22.95 us   (5.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12672

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564657531064688                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4615e+05 | 513024 |      1 | 5.422e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3667939447421253 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19083777046057637, dt = 0.0003564657531064688
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 349.90 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.4%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16768

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1360

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Will refine      1280    blocks


Info: process block count = 73088                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  65920              [AMR Grid][rank=0]
Info: cfl dt = 0.00036500356831163574                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2797e+05 | 527360 |      1 | 5.683e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2581312013932426 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19119423621368284, dt = 0.00027635202161130357
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 388.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14464

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003643631642922696                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2247e+05 | 527360 |      1 | 5.717e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7402445124496853 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 404.82328259 (s)                                         [Godunov][rank=0]
snapshot 93 time 0.19147058823529414
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.19147058823529414, dt = 0.0003643631642922696
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.34 us    (2.3%)
   patch tree reduce : 1.16 us    (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 378.59 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036359629988177945                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3927e+05 | 527360 |      1 | 5.615e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3362451295693454 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19183495139958642, dt = 0.00036359629988177945
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 343.74 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629159068938451                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2274e+05 | 527360 |      1 | 5.715e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2903183949137915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1921985476994682, dt = 0.0003629159068938451
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 334.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (63.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003623107752543988                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8715e+05 | 527360 |      1 | 5.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1978631416638157 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19256146360636206, dt = 0.0003623107752543988
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 350.03 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003617713315042482                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1362e+05 | 527360 |      1 | 6.482e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.012314891822277 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19292377438161645, dt = 0.0003617713315042482
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 337.02 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003612893688972412                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1685e+05 | 527360 |      1 | 5.752e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.264272696114277 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1932855457131207, dt = 0.00024386605158518981
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 363.96 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036099576835355544                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1927e+05 | 527360 |      1 | 5.737e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5303514814356958 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 410.60384434300005 (s)                                   [Godunov][rank=0]
snapshot 94 time 0.1935294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.1935294117647059, dt = 0.00036099576835355544
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.74 us    (2.2%)
   patch tree reduce : 1.46 us    (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 415.03 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (72.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036059443223685                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8015e+05 | 527360 |      1 | 5.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1689773097743243 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19389040753305944, dt = 0.00036059443223685
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 314.04 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036023382715664586                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3933e+05 | 527360 |      1 | 5.614e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.312249389324556 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1942510019652963, dt = 0.00036023382715664586
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 352.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003599091614588845                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3657e+05 | 527360 |      1 | 5.631e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3031291186412246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19461123579245293, dt = 0.0003599091614588845
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.4%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 341.19 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035961627305250324                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4240e+05 | 527360 |      1 | 5.596e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3153798816894375 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19497114495391182, dt = 0.00035961627305250324
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 308.13 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (60.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035935153592144876                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4508e+05 | 527360 |      1 | 6.240e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0745799587757934 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19533076122696433, dt = 0.000257474067153346
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 327.29 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035917865377056837                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3170e+05 | 527360 |      1 | 5.660e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6375842574516533 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 416.28031780500004 (s)                                   [Godunov][rank=0]
snapshot 95 time 0.19558823529411767
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.19558823529411767, dt = 0.00035917865377056837
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.22 us    (2.3%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 380.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003589549451657574                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3757e+05 | 527360 |      1 | 5.625e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2988333880564467 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19594741394788825, dt = 0.0003589549451657574
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 364.06 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035875170606554726                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2997e+05 | 527360 |      1 | 5.671e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2787965868151345 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.196306368893054, dt = 0.00035875170606554726
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 380.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358566728055202                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3338e+05 | 527360 |      1 | 5.650e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2858399995785685 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19666512059911956, dt = 0.000358566728055202
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 384.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035839807012115585                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1429e+05 | 527360 |      1 | 5.768e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2379398965437325 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19702368732717476, dt = 0.00035839807012115585
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 386.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035824402343654743                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3877e+05 | 527360 |      1 | 5.618e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.29678483946682 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19738208539729593, dt = 0.0002649734262334946
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 383.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581391979779418                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4261e+05 | 527360 |      1 | 5.595e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7050232221455734 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 421.86427885300003 (s)                                   [Godunov][rank=0]
snapshot 96 time 0.19764705882352943
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.19764705882352943, dt = 0.0003581391979779418
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.59 us    (2.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 370.63 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580070211964707                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2195e+05 | 527360 |      1 | 5.720e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.254007232978652 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19800519802150737, dt = 0.0003580070211964707
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 347.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578857407018734                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1958e+05 | 527360 |      1 | 5.735e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2473691306092842 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19836320504270386, dt = 0.0003578857407018734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 360.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035777427952246257                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2708e+05 | 527360 |      1 | 5.688e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2649405731459757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19872109078340572, dt = 0.00035777427952246257
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 973.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 358.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.41 us   (93.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035767168252127436                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0053e+05 | 527360 |      1 | 5.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1993844755414926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19907886506292818, dt = 0.00035767168252127436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 399.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035757710134201267                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0477e+05 | 527360 |      1 | 5.829e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.209106298586522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19943653674544945, dt = 0.00026934560749172776
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 346.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035751099708583145                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3737e+05 | 527360 |      1 | 5.626e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7235110104169422 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 427.51693079600005 (s)                                   [Godunov][rank=0]
snapshot 97 time 0.19970588235294118
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.19970588235294118, dt = 0.00035751099708583145
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.76 us    (2.3%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 402.40 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574286697566289                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3689e+05 | 527360 |      1 | 5.629e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2865229642303726 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.200063393350027, dt = 0.0003574286697566289
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 365.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035735247631973427                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3489e+05 | 527360 |      1 | 5.641e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2810969968367085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20042082201978365, dt = 0.00035735247631973427
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 354.15 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572818654761986                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4307e+05 | 527360 |      1 | 5.592e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.30058527347005 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20077817449610338, dt = 0.0003572818654761986
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.3%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 413.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035721635273085054                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3996e+05 | 527360 |      1 | 5.610e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2925228499401755 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2011354563615796, dt = 0.00035721635273085054
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 367.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571555037327009                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3367e+05 | 527360 |      1 | 5.648e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.276785895064507 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20149267271431043, dt = 0.0002720331680425292
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 355.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (62.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571122088165932                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3032e+05 | 527360 |      1 | 5.669e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.72761795670723 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 433.097027474 (s)                                        [Godunov][rank=0]
snapshot 98 time 0.20176470588235296
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.20176470588235296, dt = 0.0003571122088165932
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.93 us    (2.7%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 349.54 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035705863614544854                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5550e+05 | 527360 |      1 | 6.164e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.085548345752445 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20212181809116955, dt = 0.00035705863614544854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 381.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570087422598174                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3441e+05 | 527360 |      1 | 5.644e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2775697714582543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.202478876727315, dt = 0.0003570087422598174
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 379.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569622393339253                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2146e+05 | 527360 |      1 | 5.723e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2456945625336635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20283588546957482, dt = 0.0003569622393339253
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 359.56 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569188667500697                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3487e+05 | 527360 |      1 | 5.641e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2780789164101574 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20319284770890875, dt = 0.0003569188667500697
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.06 us   (6.9%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 351.81 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035687838812433685                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2330e+05 | 527360 |      1 | 5.712e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.249619592355074 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20354976657565882, dt = 0.0002737628361058897
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 356.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568492601224246                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9437e+05 | 527360 |      1 | 5.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6714332248304393 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 438.96493096600005 (s)                                   [Godunov][rank=0]
snapshot 99 time 0.2038235294117647
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.2038235294117647, dt = 0.0003568492601224246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.29 us    (2.2%)
   patch tree reduce : 1.18 us    (0.3%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 396.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568133762761619                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3605e+05 | 527360 |      1 | 5.634e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2802354277240684 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20418037867188712, dt = 0.0003568133762761619
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 344.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567798384554202                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3969e+05 | 527360 |      1 | 5.612e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2888644053669926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20453719204816329, dt = 0.0003567798384554202
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.6%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 370.74 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (62.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035674850508238514                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3748e+05 | 527360 |      1 | 5.625e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2832709655110386 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2048939718866187, dt = 0.00035674850508238514
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 382.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (74.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567193599518112                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3851e+05 | 527360 |      1 | 5.619e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.285583375340727 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20525072039170109, dt = 0.0003567193599518112
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 365.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035669224478522814                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3120e+05 | 527360 |      1 | 5.663e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2676037419669997 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2056074397516529, dt = 0.000274913189523579
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 401.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566726636161953                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3480e+05 | 527360 |      1 | 5.641e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.754326793748687 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 444.54380415 (s)                                         [Godunov][rank=0]
snapshot 100 time 0.2058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.2058823529411765, dt = 0.0003566726636161953
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.74 us    (2.3%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 398.97 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035664857687478735                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9539e+05 | 527360 |      1 | 5.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.180097637559773 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20623902560479268, dt = 0.00035664857687478735
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 357.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035662595386884026                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2970e+05 | 527360 |      1 | 5.672e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.263487777813998 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20659567418166747, dt = 0.00035662595386884026
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 397.44 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566046825502079                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3822e+05 | 527360 |      1 | 5.621e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2840989205162727 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2069523001355363, dt = 0.0003566046825502079
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 344.51 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565846636314482                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3598e+05 | 527360 |      1 | 5.634e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2785051567820283 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20730890481808653, dt = 0.0003565846636314482
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 366.15 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565661165955121                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3240e+05 | 527360 |      1 | 5.656e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2696573558672726 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20766548948171798, dt = 0.00027568698887026066
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 379.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356552884712676                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2994e+05 | 527360 |      1 | 5.671e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.750106991620588 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 450.16079558800004 (s)                                   [Godunov][rank=0]
snapshot 101 time 0.20794117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  140
analysis done
amr::Godunov: t = 0.20794117647058824, dt = 0.000356552884712676
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.71 us    (2.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 371.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565369095074273                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4361e+05 | 527360 |      1 | 5.589e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2967417240702375 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20829772935530091, dt = 0.0003565369095074273
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 371.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035652220973169866                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4347e+05 | 527360 |      1 | 5.590e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.296294388390334 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20865426626480835, dt = 0.00035652220973169866
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 337.92 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  18496

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1600

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Will refine      1024    blocks


Info: process block count = 73088                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  65920              [AMR Grid][rank=0]
Info: cfl dt = 0.0003651150451336872                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1735e+05 | 527360 |      1 | 6.452e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9892411402715282 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20901078847454005, dt = 0.0003651150451336872
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 65920.0 min = 65920.0 factor = 1
 - strategy "round robin" : max = 62624.0 min = 62624.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 65920
    max = 65920
    avg = 65920
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 337.44 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  64128              [AMR Grid][rank=0]
Info: cfl dt = 0.00036427102962005505                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8706e+05 | 513024 |      1 | 5.783e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.272735401364947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20937590351967372, dt = 0.00036427102962005505
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 64128.0 min = 64128.0 factor = 1
 - strategy "round robin" : max = 60921.6 min = 60921.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 64128
    max = 64128
    avg = 64128
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 320.94 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13632

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  64

Info: process block count = 64128                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  448 new block count =  63680               [AMR Grid][rank=0]
Info: cfl dt = 0.00036352364895794547                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1042e+05 | 509440 |      1 | 5.596e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.343554457461584 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20974017454929378, dt = 0.0002598254507062414
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 348.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003630457511187888                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3713e+05 | 509440 |      1 | 5.436e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.720644703929409 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 455.80139964200004 (s)                                   [Godunov][rank=0]
snapshot 102 time 0.21000000000000002
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.21000000000000002, dt = 0.0003630457511187888
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 30.16 us   (7.0%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 384.64 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036243462848444707                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3903e+05 | 509440 |      1 | 5.425e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4090689448340505 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2103630457511188, dt = 0.00036243462848444707
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 386.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036188970082068193                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4482e+05 | 509440 |      1 | 5.392e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.419846838174462 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21072548037960326, dt = 0.00036188970082068193
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 325.50 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003614026790609866                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3912e+05 | 509440 |      1 | 5.425e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4016421808282535 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21108737008042394, dt = 0.0003614026790609866
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 317.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003609664398533646                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4195e+05 | 509440 |      1 | 5.408e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4056204461806563 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21144877275948493, dt = 0.0003609664398533646
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 323.29 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003605748422268802                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3455e+05 | 509440 |      1 | 5.451e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3838449956046803 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2118097391993383, dt = 0.0002490843300734791
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 317.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (62.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003603297129582676                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4069e+05 | 509440 |      1 | 5.416e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.655772262904179 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 461.205072448 (s)                                        [Godunov][rank=0]
snapshot 103 time 0.21205882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.21205882352941177, dt = 0.0003603297129582676
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.69 us   (2.5%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 401.35 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003600016463274199                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3620e+05 | 509440 |      1 | 5.442e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3838386133897016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21241915324237004, dt = 0.0003600016463274199
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 381.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003597055181491667                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3345e+05 | 509440 |      1 | 5.458e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.374682010330764 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21277915488869745, dt = 0.0003597055181491667
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 356.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035943768879240164                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3432e+05 | 509440 |      1 | 5.452e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3749488760940345 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21313886040684663, dt = 0.00035943768879240164
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 347.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003591949842725106                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2292e+05 | 509440 |      1 | 5.520e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3442034265297482 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21349829809563903, dt = 0.0003591949842725106
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 342.55 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (70.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358974631737624                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5847e+05 | 509440 |      1 | 5.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1790342382789523 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21385749307991153, dt = 0.00026015397891201997
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 336.46 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003588284944056789                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3286e+05 | 509440 |      1 | 5.461e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7149755573818728 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 466.66588073400004 (s)                                   [Godunov][rank=0]
snapshot 104 time 0.21411764705882355
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.21411764705882355, dt = 0.0003588284944056789
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.06 us    (2.1%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 401.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003586410551662572                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9503e+05 | 509440 |      1 | 6.408e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0159467279820977 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21447647555322924, dt = 0.0003586410551662572
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 350.27 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035847004341540967                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4488e+05 | 509440 |      1 | 5.392e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3946783853465505 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2148351166083955, dt = 0.00035847004341540967
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 354.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035831375035699195                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2005e+05 | 509440 |      1 | 5.537e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3306271171008577 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2151935866518109, dt = 0.00035831375035699195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.7%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 347.66 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (71.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035817066919206916                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2724e+05 | 509440 |      1 | 5.494e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3478145499518006 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2155519004021679, dt = 0.00035817066919206916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 326.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580394689505423                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1140e+05 | 509440 |      1 | 5.590e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3067834802483693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21591007107135998, dt = 0.0002663995168753208
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 341.33 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035794933198593666                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4308e+05 | 509440 |      1 | 5.402e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7753847120015933 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 472.17673017500005 (s)                                   [Godunov][rank=0]
snapshot 105 time 0.2161764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.2161764705882353, dt = 0.00035794933198593666
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.41 us    (2.2%)
   patch tree reduce : 1.07 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 402.60 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035783606728033836                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4626e+05 | 509440 |      1 | 5.384e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.393555627166076 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21653441992022124, dt = 0.00035783606728033836
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 318.84 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577317677357069                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4687e+05 | 509440 |      1 | 5.380e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.394333584305637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2168922559875016, dt = 0.0003577317677357069
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 405.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (70.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035763558371600633                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0309e+05 | 509440 |      1 | 5.641e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.282956452621683 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2172499877552373, dt = 0.00035763558371600633
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 362.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575467587793434                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1820e+05 | 509440 |      1 | 5.548e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.320543095404381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2176076233389533, dt = 0.0003575467587793434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 373.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357464618348179                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2377e+05 | 509440 |      1 | 5.515e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.334038053440451 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21796517009773264, dt = 0.0002701240199144417
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 357.97 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574068604175517                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3882e+05 | 509440 |      1 | 5.426e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7920718151027597 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 477.605673102 (s)                                        [Godunov][rank=0]
snapshot 106 time 0.21823529411764708
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  136
analysis done
amr::Godunov: t = 0.21823529411764708, dt = 0.0003574068604175517
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.61 us    (2.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 532.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 386.34 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035733502143791727                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4039e+05 | 509440 |      1 | 5.417e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.375101749889755 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21859270097806463, dt = 0.00035733502143791727
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 63680.0 min = 63680.0 factor = 1
 - strategy "round robin" : max = 60496.0 min = 60496.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 63680
    max = 63680
    avg = 63680
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 326.42 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1280

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  56512              [AMR Grid][rank=0]
Info: cfl dt = 0.0003572683732908602                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4289e+05 | 452096 |      1 | 6.086e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1138328257318544 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21895003599950255, dt = 0.0003572683732908602
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.6%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 316.92 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  54720              [AMR Grid][rank=0]
Info: cfl dt = 0.0003572064780306425                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9992e+05 | 437760 |      1 | 4.864e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6440356145453445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21930730437279342, dt = 0.0003572064780306425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 42.85 us   (10.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 356.66 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035714894181113066                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9022e+05 | 437760 |      1 | 4.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.615066004999871 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21966451085082406, dt = 0.00035714894181113066
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 325.06 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570954098314806                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4606e+05 | 437760 |      1 | 5.174e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.484954947123611 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2200216597926352, dt = 0.00027245785442364667
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 346.82 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035705719911486997                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3395e+05 | 437760 |      1 | 5.249e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8685585071836444 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 482.91052645900004 (s)                                   [Godunov][rank=0]
snapshot 107 time 0.22029411764705883
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.22029411764705883, dt = 0.00035705719911486997
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.71 us    (2.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 384.13 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035700995513502075                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9509e+05 | 437760 |      1 | 4.891e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6282864500263146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2206511748461737, dt = 0.00035700995513502075
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.4%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 331.46 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035696590454182723                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1046e+05 | 437760 |      1 | 4.808e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6730578639869833 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2210081848013087, dt = 0.00035696590454182723
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 356.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569248039847567                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4485e+05 | 437760 |      1 | 4.633e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.773671894704971 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22136515070585053, dt = 0.0003569248039847567
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 378.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568864324609021                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3699e+05 | 437760 |      1 | 4.672e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.75028469013154 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22172207550983528, dt = 0.0003568864324609021
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 387.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568505889325597                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1844e+05 | 437760 |      1 | 4.766e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6955434696862883 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22207896194229618, dt = 0.00027397923417443737
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.6%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 317.59 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (63.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035682475239232536                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3423e+05 | 437760 |      1 | 5.247e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8796137410254208 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 487.691204722 (s)                                        [Godunov][rank=0]
snapshot 108 time 0.22235294117647061
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.22235294117647061, dt = 0.00035682475239232536
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.66 us    (2.3%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 391.33 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (50.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567929341947886                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9363e+05 | 437760 |      1 | 4.899e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6222782506765125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22270976592886293, dt = 0.0003567929341947886
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 305.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035676317562373367                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5640e+05 | 437760 |      1 | 5.112e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5128145763653316 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22306655886305773, dt = 0.00035676317562373367
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 305.38 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567354236196141                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8412e+05 | 437760 |      1 | 4.951e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.593915311111082 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22342332203868145, dt = 0.0003567354236196141
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.6%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.94 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356709591248797                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4395e+05 | 437760 |      1 | 4.638e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7692476365234184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22378005746230106, dt = 0.000356709591248797
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 325.13 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566855429782367                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4765e+05 | 437760 |      1 | 4.619e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7799131492421494 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22413676705354987, dt = 0.0002749976523324926
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 357.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566680752441104                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4932e+05 | 437760 |      1 | 4.611e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1468704489958372 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 492.458336239 (s)                                        [Godunov][rank=0]
snapshot 109 time 0.22441176470588237
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.22441176470588237, dt = 0.0003566680752441104
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.49 us    (2.5%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 357.75 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (72.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035664658939812315                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6847e+05 | 437760 |      1 | 5.041e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.547319609553942 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2247684327811265, dt = 0.00035664658939812315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 320.22 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035662641146382425                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4560e+05 | 437760 |      1 | 4.629e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.773383009852756 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22512507937052462, dt = 0.00035662641146382425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 357.15 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (71.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566074572494232                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5839e+05 | 437760 |      1 | 5.772e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2242044229232465 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22548170578198845, dt = 0.0003566074572494232
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 334.00 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565896527654809                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0447e+05 | 437760 |      1 | 5.442e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3592089867537633 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22583831323923786, dt = 0.0003565896527654809
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 369.64 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (74.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565731020371072                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2397e+05 | 437760 |      1 | 4.738e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.709531088370098 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22619490289200334, dt = 0.0002756853432908102
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 351.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035656131673756524                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3837e+05 | 437760 |      1 | 4.665e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1274137073691963 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 497.373211372 (s)                                        [Godunov][rank=0]
snapshot 110 time 0.22647058823529415
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.22647058823529415, dt = 0.00035656131673756524
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.66 us    (2.4%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 372.51 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.1%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1088

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Will refine      1280    blocks


Info: process block count = 63680                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  56512              [AMR Grid][rank=0]
Info: cfl dt = 0.0003651993015728539                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2083e+05 | 452096 |      1 | 5.508e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3305452543801417 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2268271495520317, dt = 0.0003651993015728539
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 359.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036435033858595435                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3167e+05 | 452096 |      1 | 4.853e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7093380260295934 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22719234885360456, dt = 0.00036435033858595435
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 356.65 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003635985335144277                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3046e+05 | 452096 |      1 | 4.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6995226908679437 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22755669919219051, dt = 0.0003635985335144277
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 317.85 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629310970077539                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3190e+05 | 452096 |      1 | 4.851e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6981215459887786 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22792029772570493, dt = 0.0003629310970077539
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 315.52 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 24.25 us   (6.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1600

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.0003623371424295762                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9598e+05 | 394752 |      1 | 4.959e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.634526976086189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22828322882271268, dt = 0.0002461829419932171
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (1.2%)
   patch tree reduce : 1.22 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 369.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036197429072918106                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0994e+05 | 394752 |      1 | 4.338e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0429175960116988 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 502.379618171 (s)                                        [Godunov][rank=0]
snapshot 111 time 0.2285294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.2285294117647059, dt = 0.00036197429072918106
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.99 us    (2.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 361.56 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003614830634952423                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8438e+05 | 394752 |      1 | 5.033e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5893001810666783 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22889138605543508, dt = 0.0003614830634952423
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 348.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003610433064439061                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1685e+05 | 394752 |      1 | 4.306e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0224722013718743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2292528691189303, dt = 0.0003610433064439061
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1.46 us    (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 399.68 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003606487941374575                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0840e+05 | 394752 |      1 | 4.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9909721564551544 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2296139124253742, dt = 0.0003606487941374575
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 346.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (72.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036029414108323433                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4948e+05 | 394752 |      1 | 4.647e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7939405646945756 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22997456121951168, dt = 0.00036029414108323433
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 357.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003599746761007964                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8249e+05 | 394752 |      1 | 5.045e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.571073550953738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23033485536059492, dt = 0.00025337993352272936
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.4%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 335.52 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035977033262476083                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6765e+05 | 394752 |      1 | 4.550e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.004899866860065 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 506.91235866500006 (s)                                   [Godunov][rank=0]
snapshot 112 time 0.23058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.23058823529411765, dt = 0.00035977033262476083
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.38 us    (2.4%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 376.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035950156891305114                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8804e+05 | 394752 |      1 | 5.009e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5855337444391884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23094800562674242, dt = 0.00035950156891305114
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 356.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003592581955385613                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0425e+05 | 394752 |      1 | 4.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6367721979443104 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23130750719565546, dt = 0.0003592581955385613
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 305.29 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003590373988324731                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2075e+05 | 394752 |      1 | 4.287e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0166517663193404 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23166676539119402, dt = 0.0003590373988324731
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.3%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 371.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003588367171901397                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2889e+05 | 394752 |      1 | 4.762e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7140176168995502 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2320258027900265, dt = 0.0003588367171901397
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 315.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003586539914156344                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0549e+05 | 394752 |      1 | 4.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6359337036981207 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23238463950721663, dt = 0.00026241931631279525
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 390.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (72.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035853133679359284                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0742e+05 | 394752 |      1 | 4.889e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9322993309173042 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 511.55542033300003 (s)                                   [Godunov][rank=0]
snapshot 113 time 0.23264705882352943
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.23264705882352943, dt = 0.00035853133679359284
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.20 us    (2.4%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 359.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003583752638176429                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1431e+05 | 394752 |      1 | 4.317e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.989511166566724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23300559016032302, dt = 0.0003583752638176429
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 359.08 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358232484816133                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6923e+05 | 394752 |      1 | 4.541e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.840860537130561 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23336396542414067, dt = 0.000358232484816133
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 394.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581016495763428                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1380e+05 | 394752 |      1 | 4.320e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.985343025353794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23372219790895682, dt = 0.0003581016495763428
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 338.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (62.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579815633739646                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0723e+05 | 394752 |      1 | 4.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.962811995770196 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23408029955853316, dt = 0.0003579815633739646
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 315.54 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578711674719776                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1310e+05 | 394752 |      1 | 4.323e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.980957591009519 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23443828112190712, dt = 0.0002676012310340592
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 324.22 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577947692830809                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2025e+05 | 394752 |      1 | 4.290e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2458046910922937 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 515.8809884870001 (s)                                    [Godunov][rank=0]
snapshot 114 time 0.23470588235294118
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.23470588235294118, dt = 0.0003577947692830809
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.77 us    (2.2%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 572.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 420.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035769907952299285                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5618e+05 | 394752 |      1 | 4.611e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7936776988179144 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23506367712222426, dt = 0.00035769907952299285
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 303.88 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576107453688332                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4980e+05 | 394752 |      1 | 4.645e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.772115368213361 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23542137620174725, dt = 0.0003576107453688332
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 325.90 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035752908427181293                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1853e+05 | 394752 |      1 | 4.298e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9956002984904435 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23577898694711608, dt = 0.00035752908427181293
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 365.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574534871167332                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1279e+05 | 394752 |      1 | 4.325e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9761782907243353 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23613651603138788, dt = 0.0003574534871167332
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.46 us   (6.3%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 367.34 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357383409530455                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0943e+05 | 394752 |      1 | 4.341e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9645941624872574 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23649396951850463, dt = 0.000270736363848334
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 360.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035733390004600023                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1137e+05 | 394752 |      1 | 4.331e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.250195484708145 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 520.2483530950001 (s)                                    [Godunov][rank=0]
snapshot 115 time 0.23676470588235296
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.23676470588235296, dt = 0.00035733390004600023
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.59 us    (2.2%)
   patch tree reduce : 1.47 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 413.80 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572723561761055                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1704e+05 | 394752 |      1 | 4.305e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.988422189589633 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23712203978239896, dt = 0.0003572723561761055
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 351.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035721510889499667                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6596e+05 | 394752 |      1 | 4.559e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8214607046438065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23747931213857507, dt = 0.00035721510889499667
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 350.26 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571617964310852                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1332e+05 | 394752 |      1 | 4.322e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.975292062710346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23783652724747006, dt = 0.0003571617964310852
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 319.64 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035711209318145293                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0690e+05 | 394752 |      1 | 4.892e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.628219023315038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23819368904390115, dt = 0.00035711209318145293
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 362.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570657060482413                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0612e+05 | 394752 |      1 | 4.357e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9509919637250417 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2385508011370826, dt = 0.00027272827468211025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 400.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035703246225098756                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0453e+05 | 394752 |      1 | 4.364e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2497256935499066 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 524.6300046030001 (s)                                    [Godunov][rank=0]
snapshot 116 time 0.2388235294117647
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.2388235294117647, dt = 0.00035703246225098756
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.27 us    (2.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 369.69 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569913028396276                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7242e+05 | 394752 |      1 | 4.525e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8406247604513877 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2391805618740157, dt = 0.0003569913028396276
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 322.41 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569528045857587                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7916e+05 | 394752 |      1 | 4.490e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8622106662795668 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23953755317685532, dt = 0.0003569528045857587
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 317.96 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035691676957735056                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7931e+05 | 394752 |      1 | 4.489e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8624062376949624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23989450598144108, dt = 0.00035691676957735056
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 360.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035688301737486165                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1749e+05 | 394752 |      1 | 4.303e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9863841386749814 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24025142275101843, dt = 0.00035688301737486165
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 341.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035685138320729087                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0316e+05 | 394752 |      1 | 4.371e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.939483841732616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2406083057683933, dt = 0.0002740471727832039
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 346.57 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035682850077539555                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6501e+05 | 394752 |      1 | 5.160e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9119240794854018 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 529.0965671920001 (s)                                    [Godunov][rank=0]
snapshot 117 time 0.2408823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.2408823529411765, dt = 0.00035682850077539555
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.04 us   (2.3%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 408.54 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035680024625757813                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1150e+05 | 394752 |      1 | 4.331e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.966146417392397 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2412391814419519, dt = 0.00035680024625757813
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 346.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035677372307147163                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0795e+05 | 394752 |      1 | 4.348e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9543767939734615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24159598168820948, dt = 0.00035677372307147163
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 341.65 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035674881259667294                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0762e+05 | 394752 |      1 | 4.349e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9530684653512744 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24195275541128095, dt = 0.00035674881259667294
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.5%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 314.47 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (61.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567254057464407                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1163e+05 | 394752 |      1 | 4.330e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9659102922425373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24230950422387762, dt = 0.0003567254057464407
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 376.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (72.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035670340206634126                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0420e+05 | 394752 |      1 | 4.366e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9415655402295675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24266622962962406, dt = 0.0002749468409641853
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.1%)
   patch tree reduce : 1.56 us    (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.2%)
   LB compute        : 498.54 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566873829543167                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0998e+05 | 394752 |      1 | 4.338e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.281709600602196 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 533.4513037720001 (s)                                    [Godunov][rank=0]
snapshot 118 time 0.24294117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.24294117647058824, dt = 0.0003566873829543167
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 31.64 us   (7.8%)
   patch tree reduce : 1.17 us    (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 361.08 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035666756109688095                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4358e+05 | 394752 |      1 | 4.679e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7440615122244325 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24329786385354257, dt = 0.00035666756109688095
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 329.17 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035664883216392137                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2152e+05 | 394752 |      1 | 4.284e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.997401555719806 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24365453141463944, dt = 0.00035664883216392137
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 377.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566311486640877                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1773e+05 | 394752 |      1 | 4.301e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.984940408101831 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24401118024680335, dt = 0.0003566311486640877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566147516631125                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9643e+05 | 394752 |      1 | 4.404e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9155205734333616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24436781139546743, dt = 0.0003566147516631125
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 369.77 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  20352

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1344

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Will refine      1024    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.00036508486537624376                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8321e+05 | 394752 |      1 | 4.470e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8723619119445054 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24472442614713055, dt = 0.0002755738528694429
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1.49 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 409.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16256

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  47552              [AMR Grid][rank=0]
Info: cfl dt = 0.00036445187273651447                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5721e+05 | 380416 |      1 | 4.438e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2354759449995103 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 537.84497443 (s)                                         [Godunov][rank=0]
snapshot 119 time 0.245
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
analysis done
317 sodanalysis = model.make_analysis_sodtube(sod, (0, 1, 0), t_target, xref, 0.0, 1.0)
318 rho, v, P = sodanalysis.compute_L2_dist()
319 print(rho, v, P)
320
321 del ctx, model
0.0009147497667120426 (0.0, 0.03161700045080046, 0.0) 0.001995280880867661

i have to unroll the loop otherwise the doc does not capture the gifs …

325 glob_str = "_to_trash/sod_tube_amr_first_*.png"
326 ani = show_image_sequence(glob_str)
327
328 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
329 ani.save("_to_trash/sod_tube_amr_first.gif", writer=writer)
330
331 if shamrock.sys.world_rank() == 0:
332     plt.show()

Second-order interpolation

337 ctx, model, t_target = run_case(
338     "second",
339     "_to_trash/sod_tube_amr_second",
340     "_to_trash/sod_tube_amr_second_last.npy",
341 )
Info: pushing data in scheduler, N = 4096                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  7.17 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.19 us   (76.7%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (0.2%)
   patch tree reduce : 922.00 ns  (0.1%)
   gen split merge   : 742.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 672.54 us  (98.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.5%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: time since start : 578.7392384350001 (s)                                    [Godunov][rank=0]
snapshot 0 time 0.0
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  32
analysis done
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.07 us   (2.1%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 447.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.6%)
Info: cfl dt = 0.002641107046026614                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9047e+05 | 32768 |      1 | 1.720e-01 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.002058823529411765
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4096.0 min = 4096.0 factor = 1
 - strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4096
    max = 4096
    avg = 4096
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 382.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3584

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  384

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  384

Will refine      512     blocks


Info: process block count = 7680                                                  [AMRGrid][rank=0]
Info: patch 0 derefine block count =  2688 new block count =  4992               [AMR Grid][rank=0]
Info: cfl dt = 0.001320553523013307                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0210e+05 | 39936 |      1 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.06739934339718 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 579.44943206 (s)                                         [Godunov][rank=0]
snapshot 1 time 0.002058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  24
analysis done
amr::Godunov: t = 0.002058823529411765, dt = 0.001320553523013307
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 4992.0 min = 4992.0 factor = 1
 - strategy "round robin" : max = 4742.4 min = 4742.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 4992
    max = 4992
    avg = 4992
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.03 us   (2.7%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 343.64 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2944

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  32

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  32

Will refine      2048    blocks


Info: process block count = 19328                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  224 new block count =  19104               [AMR Grid][rank=0]
Info: cfl dt = 0.0006602767615066535                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4258e+05 | 152832 |      1 | 2.058e-01 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.098751575410677 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003379377052425072, dt = 0.0006602767615066535
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.3%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 343.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0005917959817155755                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 5.5485e+05 | 152832 |      1 | 2.754e-01 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.629563335813533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004039653813931726, dt = 7.799324489180404e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 316.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0005814604971244168                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9141e+05 | 152832 |      1 | 1.931e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.453933319382863 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 580.525329959 (s)                                        [Godunov][rank=0]
snapshot 2 time 0.00411764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.00411764705882353, dt = 0.0005814604971244168
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.90 us    (2.4%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 388.41 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0005258049103380767                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.1475e+05 | 152832 |      1 | 2.486e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.41988932458343 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004699107555947947, dt = 0.0005258049103380767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 370.46 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10912

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004943037842579135                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0656e+05 | 152832 |      1 | 2.163e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.75106045755863 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005224912466286024, dt = 0.0004943037842579135
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 382.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004734368490963676                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.2274e+05 | 152832 |      1 | 2.454e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.2508807002536875 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005719216250543937, dt = 0.00045725433769135734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.5%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 322.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004588763411601025                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8571e+05 | 152832 |      1 | 1.945e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.4626768065697 (tsim/hr)                              [amr::RAMSES][rank=0]
Info: time since start : 582.2395508740001 (s)                                    [Godunov][rank=0]
snapshot 3 time 0.0061764705882352946
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.0061764705882352946, dt = 0.0004588763411601025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.95 us    (2.7%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 350.17 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004474232517735889                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9028e+05 | 152832 |      1 | 1.934e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.542149720523513 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006635346929395397, dt = 0.0004474232517735889
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 321.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000438485210298792                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8843e+05 | 152832 |      1 | 1.938e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.309416309909233 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007082770181168986, dt = 0.000438485210298792
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 330.14 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00043135531115909146                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8837e+05 | 152832 |      1 | 1.939e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.142819771173533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007521255391467778, dt = 0.00043135531115909146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.7%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 302.62 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6816

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00042558474637361765                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2719e+05 | 152832 |      1 | 2.102e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.388761987612593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007952610702626869, dt = 0.0002826834150201907
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.5%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 312.86 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00042235684757046523                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5783e+05 | 152832 |      1 | 2.017e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.046141037685683 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 584.235093243 (s)                                        [Godunov][rank=0]
snapshot 4 time 0.00823529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.00823529411764706, dt = 0.00042235684757046523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 362.74 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00041822568525838854                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7025e+05 | 152832 |      1 | 1.984e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.662988567656533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008657650965217525, dt = 0.00041822568525838854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.9%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 274.48 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004148592274875695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9046e+05 | 152832 |      1 | 2.213e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.802013600409661 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009075876650475913, dt = 0.0004148592274875695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 27.79 us   (6.4%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 389.01 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004121301455769911                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.3092e+05 | 152832 |      1 | 2.422e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.165421774724943 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009490735877963482, dt = 0.0004121301455769911
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.7%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 351.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (62.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004099264352467595                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.1750e+05 | 152832 |      1 | 2.475e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.994635049737023 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009902866023540473, dt = 0.000391251623518352
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 365.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00040823401361872523                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8819e+05 | 152832 |      1 | 1.939e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.264023763280032 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 586.142166275 (s)                                        [Godunov][rank=0]
snapshot 5 time 0.010294117647058825
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.010294117647058825, dt = 0.00040823401361872523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.79 us    (2.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 366.76 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004068229949958348                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4101e+05 | 152832 |      1 | 2.062e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.12561750268076 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01070235166067755, dt = 0.0004068229949958348
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 371.53 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (71.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004057265071374787                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9444e+05 | 152832 |      1 | 1.924e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.612988999918218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011109174655673385, dt = 0.0004057265071374787
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 291.62 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (61.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2720

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004048967509589252                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8743e+05 | 152832 |      1 | 1.941e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.525487570525316 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011514901162810863, dt = 0.0004048967509589252
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.8%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 274.98 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (61.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00040429347167509716                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8208e+05 | 152832 |      1 | 1.954e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.459060098649634 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011919797913769788, dt = 0.00040429347167509716
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.7%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 297.91 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (62.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004038823192788411                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9189e+05 | 152832 |      1 | 1.930e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.541408325928145 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012324091385444885, dt = 2.8849791025704202e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.7%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 306.13 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0004038580166478702                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9877e+05 | 152832 |      1 | 1.913e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.542815134481987 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 588.1193507280001 (s)                                    [Godunov][rank=0]
snapshot 6 time 0.012352941176470589
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  48
analysis done
amr::Godunov: t = 0.012352941176470589, dt = 0.0004038580166478702
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.73 us    (2.3%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 622.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 406.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00040014902329657624                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2450e+05 | 152832 |      1 | 2.109e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.892171680833853 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01275679919311846, dt = 0.00040014902329657624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 324.81 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (62.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003961529567668873                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9468e+05 | 152832 |      1 | 1.923e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.490323539347725 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013156948216415035, dt = 0.0003961529567668873
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 307.88 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003928116628632412                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1723e+05 | 152832 |      1 | 2.131e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.692796119763366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013553101173181922, dt = 0.0003928116628632412
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 346.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (73.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00039001227933022976                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9186e+05 | 152832 |      1 | 1.930e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.326868513260296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013945912836045163, dt = 0.00039001227933022976
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 313.65 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (61.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 19104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038767551199431097                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0175e+05 | 152832 |      1 | 1.906e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.365524243666718 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014335925115375393, dt = 7.583959050696046e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 19104.0 min = 19104.0 factor = 1
 - strategy "round robin" : max = 18148.8 min = 18148.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 19104
    max = 19104
    avg = 19104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 292.56 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (56.4%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  1696

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  0

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1360    blocks


Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038728000811695                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.1136e+06 | 228992 |      1 | 2.056e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3277646929044538 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 590.154505143 (s)                                        [Godunov][rank=0]
snapshot 7 time 0.014411764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.014411764705882353, dt = 0.00038728000811695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.78 us    (2.2%)
   patch tree reduce : 1.52 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 412.76 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038538012089489604                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1777e+05 | 228992 |      1 | 3.190e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.3700878967530645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014799044713999303, dt = 0.00038538012089489604
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 352.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003838088210924787                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4708e+05 | 228992 |      1 | 2.703e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.132095748862033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015184424834894199, dt = 0.0003838088210924787
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 393.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (62.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003824995505518537                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4808e+05 | 228992 |      1 | 2.700e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.117209036580668 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015568233655986677, dt = 0.0003824995505518537
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 318.10 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003813893925858331                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5783e+05 | 228992 |      1 | 2.669e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.158375372624874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01595073320653853, dt = 0.0003813893925858331
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 311.80 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003804605432723328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5616e+05 | 228992 |      1 | 2.675e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.133386855739906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016332122599124366, dt = 0.0001384656361697531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 345.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00038017442610720887                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5525e+05 | 228992 |      1 | 2.677e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8617302235989117 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 592.9307880490001 (s)                                    [Godunov][rank=0]
snapshot 8 time 0.01647058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.01647058823529412, dt = 0.00038017442610720887
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.18 us    (2.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 342.08 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003794657495991848                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6231e+05 | 228992 |      1 | 2.656e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.153831535086466 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016850762661401328, dt = 0.0003794657495991848
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 362.60 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000378903509120108                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6530e+05 | 228992 |      1 | 2.992e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.565488011375973 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01723022841100051, dt = 0.000378903509120108
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 338.39 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (72.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003784752520950754                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1477e+05 | 228992 |      1 | 2.811e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.853400433983247 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01760913192012062, dt = 0.0003784752520950754
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.3%)
   LB compute        : 355.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003781699872477832                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5507e+05 | 228992 |      1 | 2.678e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.087676914864704 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987607172215696, dt = 0.0003781699872477832
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 365.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003779777770734229                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6426e+05 | 228992 |      1 | 2.650e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.13825389411335 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01836577715946348, dt = 0.0001636346052424041
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.6%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 347.34 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037793431346876805                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5453e+05 | 228992 |      1 | 2.680e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1982998978726753 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 595.6923602300001 (s)                                    [Godunov][rank=0]
snapshot 9 time 0.018529411764705885
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.018529411764705885, dt = 0.00037793431346876805
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.73 us    (2.1%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 435.91 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003778891497430957                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2992e+05 | 228992 |      1 | 2.759e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.930985941179875 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018907346078174653, dt = 0.0003778891497430957
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 379.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037793893740566                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5579e+05 | 228992 |      1 | 2.676e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.084099688673646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01928523522791775, dt = 0.00037793893740566
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 345.01 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8144

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003780766586860245                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6308e+05 | 228992 |      1 | 2.653e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.128062022324017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01966317416532341, dt = 0.0003780766586860245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 344.54 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4048

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037829546160206886                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5144e+05 | 228992 |      1 | 2.689e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.060746826413769 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020041250824009434, dt = 0.00037829546160206886
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.5%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 397.16 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037846477090351085                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5284e+05 | 228992 |      1 | 2.685e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.072003900007104 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020419546285611503, dt = 0.00016868900850614682
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.4%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 357.85 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003779767939115298                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5363e+05 | 228992 |      1 | 2.683e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2638027880180625 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 598.3976136790001 (s)                                    [Godunov][rank=0]
snapshot 10 time 0.02058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.02058823529411765, dt = 0.0003779767939115298
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 29.94 us   (7.1%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 375.86 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003770008956055659                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5715e+05 | 228992 |      1 | 2.672e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.093352334715912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02096621208802918, dt = 0.0003770008956055659
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 356.47 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037621075575801105                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9564e+05 | 228992 |      1 | 2.878e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.715636253764438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021343212983634743, dt = 0.00037621075575801105
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.6%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 376.23 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (70.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037558820322554246                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0717e+05 | 228992 |      1 | 2.837e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.773977058511094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021719423739392753, dt = 0.00037558820322554246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 364.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037511720264416063                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5093e+05 | 228992 |      1 | 2.691e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.024447578467479 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022095011942618297, dt = 0.00037511720264416063
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 342.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037478348935839024                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1720e+05 | 228992 |      1 | 2.802e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.819223851261161 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022470129145262457, dt = 0.00017692967826695577
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 351.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037467807705051325                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5833e+05 | 228992 |      1 | 2.668e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.387455321945386 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 601.149115605 (s)                                        [Godunov][rank=0]
snapshot 11 time 0.022647058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.022647058823529412, dt = 0.00037467807705051325
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.68 us    (2.4%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 386.66 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003745228813039761                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5276e+05 | 228992 |      1 | 2.685e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.023018309650701 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023021736900579924, dt = 0.0003745228813039761
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 395.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003744760326654997                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7353e+05 | 228992 |      1 | 2.960e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.554470911412869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0233962597818839, dt = 0.0003744760326654997
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 327.08 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037452780994717084                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9736e+05 | 228992 |      1 | 2.872e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.6941638765616025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0237707358145494, dt = 0.00037452780994717084
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.7%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 312.01 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00037351765953667877                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5842e+05 | 228992 |      1 | 2.668e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.054348716989939 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024145263624496573, dt = 0.00037351765953667877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 343.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003720049735530872                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5623e+05 | 228992 |      1 | 2.674e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.027837686952399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02451878128403325, dt = 0.00018710106890792652
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 308.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003713492730466829                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5692e+05 | 228992 |      1 | 2.672e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5205667000162055 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 603.895448664 (s)                                        [Godunov][rank=0]
snapshot 12 time 0.024705882352941178
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.024705882352941178, dt = 0.0003713492730466829
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.47 us    (2.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 365.62 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003701958052602592                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4874e+05 | 228992 |      1 | 2.698e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9549288101215065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02507723162598786, dt = 0.0003701958052602592
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.6%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 328.19 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (63.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036925674310571665                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6542e+05 | 228992 |      1 | 2.646e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.03662268799643 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02544742743124812, dt = 0.00036925674310571665
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 323.14 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036851989468020296                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4750e+05 | 228992 |      1 | 2.702e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.919834222344355 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025816684174353836, dt = 0.00036851989468020296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 365.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003679625473968007                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6264e+05 | 228992 |      1 | 2.655e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.997747615913696 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02618520406903404, dt = 0.0003679625473968007
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 381.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (61.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036756488234564275                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5940e+05 | 228992 |      1 | 2.665e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.971434948054035 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02655316661643084, dt = 0.00021153926592210395
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 315.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000367409993885466                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9854e+05 | 228992 |      1 | 2.868e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.655655560084617 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 606.6331111940001 (s)                                    [Godunov][rank=0]
snapshot 13 time 0.026764705882352944
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.026764705882352944, dt = 0.000367409993885466
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.71 us    (2.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 369.56 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036722891809648473                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6501e+05 | 228992 |      1 | 2.647e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.996350346594915 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02713211587623841, dt = 0.00036722891809648473
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.4%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 355.05 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003671669138920726                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8940e+05 | 228992 |      1 | 2.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.557413371399194 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027499344794334895, dt = 0.0003671669138920726
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 344.68 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036721142173056154                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6093e+05 | 228992 |      1 | 2.660e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.969538587493566 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027866511708226967, dt = 0.00036721142173056154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 312.95 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  3024

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  334

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036735130859794676                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5836e+05 | 228992 |      1 | 2.668e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.95525116618546 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02823372312995753, dt = 0.00036735130859794676
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 323.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003675767262952544                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6326e+05 | 228992 |      1 | 2.653e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.985474901388852 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028601074438555477, dt = 0.00022245497320922888
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 371.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003677568884406673                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4387e+05 | 228992 |      1 | 3.078e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.601502180604769 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 609.3824972890001 (s)                                    [Godunov][rank=0]
snapshot 14 time 0.028823529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.028823529411764706, dt = 0.0003677568884406673
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.85 us    (2.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 366.00 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003669760006129422                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5909e+05 | 228992 |      1 | 3.017e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.388713641229941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029191286300205375, dt = 0.0003669760006129422
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 316.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036584522490855                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5455e+05 | 228992 |      1 | 2.680e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.930131608516039 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029558262300818317, dt = 0.00036584522490855
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 326.49 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (74.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036491468097447476                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5079e+05 | 228992 |      1 | 2.692e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.893282517883707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029924107525726867, dt = 0.00036491468097447476
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 393.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036416223966992146                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3334e+05 | 228992 |      1 | 2.748e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.7807509604882235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030289022206701342, dt = 0.00036416223966992146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.6%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 354.86 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (74.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036356739706859043                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6557e+05 | 228992 |      1 | 2.646e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.955432478783563 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030653184446371263, dt = 0.00022916849480520904
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 339.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  2000

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003632721989537262                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0198e+05 | 228992 |      1 | 2.855e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8893640925602697 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 612.140161811 (s)                                        [Godunov][rank=0]
snapshot 15 time 0.030882352941176472
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  68
analysis done
amr::Godunov: t = 0.030882352941176472, dt = 0.0003632721989537262
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.59 us    (2.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 662.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 368.50 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6096

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629024891467764                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6544e+05 | 228992 |      1 | 2.646e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.942558079127406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031245625140130198, dt = 0.0003629024891467764
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 307.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6096

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 28624                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036265560449664136                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0035e+05 | 228992 |      1 | 3.270e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9956315197159165 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031608527629276975, dt = 0.00036265560449664136
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 28624.0 min = 28624.0 factor = 1
 - strategy "round robin" : max = 27192.8 min = 27192.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 28624
    max = 28624
    avg = 28624
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 390.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6096

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  78

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1024    blocks


Info: process block count = 35792                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003625182065838522                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0240e+06 | 286336 |      1 | 2.796e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.668779776606124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03197118323377362, dt = 0.0003625182065838522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 35792.0 min = 35792.0 factor = 1
 - strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 35792
    max = 35792
    avg = 35792
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 404.70 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 35792                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003624786158560713                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7255e+05 | 286336 |      1 | 3.706e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.521149213496302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03233370144035747, dt = 0.0003624786158560713
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 35792.0 min = 35792.0 factor = 1
 - strategy "round robin" : max = 34002.4 min = 34002.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 35792
    max = 35792
    avg = 35792
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 391.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
Refinement 2:1 balance converged in  4  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1360    blocks


Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036252661689178283                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0527e+06 | 362496 |      1 | 3.443e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7896267645963695 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032696180056213546, dt = 0.0002449964143746916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 349.93 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036260822923584395                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8836e+05 | 362496 |      1 | 4.081e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.161457402727791 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 615.3972598690001 (s)                                    [Godunov][rank=0]
snapshot 16 time 0.03294117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.03294117647058824, dt = 0.00036260822923584395
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.82 us    (2.7%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 561.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 340.80 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003627831039360763                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6354e+05 | 362496 |      1 | 4.198e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1097139016389588 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033303784699824084, dt = 0.0003627831039360763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 346.99 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036302382236061843                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1066e+05 | 362496 |      1 | 3.981e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2809876789815293 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03366656780376016, dt = 0.00036302382236061843
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.6%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 320.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003631528911313689                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0026e+05 | 362496 |      1 | 4.027e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2456723383996713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03402959162612078, dt = 0.0003631528911313689
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 321.29 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036217955535274585                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3045e+05 | 362496 |      1 | 4.365e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9950323762083886 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03439274451725215, dt = 0.00036217955535274585
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 384.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003613772188838139                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0501e+05 | 362496 |      1 | 4.005e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2551888761993037 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034754924072604894, dt = 0.00024507592739510947
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 356.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003609250444292125                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0590e+05 | 362496 |      1 | 4.002e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2048534231910955 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 619.493795444 (s)                                        [Godunov][rank=0]
snapshot 17 time 0.035
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.035, dt = 0.0003609250444292125
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.47 us   (2.7%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 364.21 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036036251330642615                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0864e+05 | 362496 |      1 | 3.989e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2569135307252304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03536092504442922, dt = 0.00036036251330642615
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.5%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 352.03 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000359924042759246                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0522e+05 | 362496 |      1 | 4.004e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2396206301463732 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03572128755773565, dt = 0.000359924042759246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.3%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 336.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035959727622743087                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1038e+05 | 362496 |      1 | 3.982e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2541250700899873 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03608121160049489, dt = 0.00035959727622743087
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 376.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003593710868331608                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1144e+05 | 362496 |      1 | 3.977e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.254958974495581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036440808876722325, dt = 0.0003593710868331608
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 389.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003592355057290549                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3613e+05 | 362496 |      1 | 4.335e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9841218369016564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03680017996355549, dt = 0.00025864356585628134
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 371.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003591925831532022                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1039e+05 | 362496 |      1 | 3.982e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.338457270162859 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 623.513731443 (s)                                        [Godunov][rank=0]
snapshot 18 time 0.03705882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.03705882352941177, dt = 0.0003591925831532022
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.56 us    (2.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 377.97 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035919627019247315                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2385e+05 | 362496 |      1 | 4.400e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9388315293733025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741801611256497, dt = 0.00035919627019247315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.6%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 322.12 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035927293279724114                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3195e+05 | 362496 |      1 | 4.357e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9677491346589284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03777721238275744, dt = 0.00035927293279724114
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.4%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 320.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.57 us   (94.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003594131336830513                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0303e+05 | 362496 |      1 | 4.014e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2219912855496053 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.038136485315554684, dt = 0.0003594131336830513
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 338.96 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035960899562001387                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0443e+05 | 362496 |      1 | 4.008e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.228258498245703 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03849589844923774, dt = 0.00035960899562001387
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 362.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035985391860293855                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7471e+05 | 362496 |      1 | 4.144e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.123893805122279 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03885550744485775, dt = 0.0002621396139657825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 361.97 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000360062065281513                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9619e+05 | 362496 |      1 | 4.045e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.333083851065756 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 627.5994018570001 (s)                                    [Godunov][rank=0]
snapshot 19 time 0.039117647058823535
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.039117647058823535, dt = 0.000360062065281513
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.18 us   (2.4%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 393.13 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8448

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000359325379476648                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9874e+05 | 362496 |      1 | 4.033e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.213749600844608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.039477709124105045, dt = 0.000359325379476648
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 336.97 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358708982068319                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5612e+05 | 362496 |      1 | 4.234e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0550898122665573 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03983703450358169, dt = 0.000358708982068319
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 348.16 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003582144379727608                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4519e+05 | 362496 |      1 | 4.289e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0108828440358497 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04019574348565001, dt = 0.0003582144379727608
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.4%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 345.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035782178179984055                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7494e+05 | 362496 |      1 | 4.143e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1125935294869 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04055395792362277, dt = 0.00035782178179984055
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 326.30 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035751978565284155                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0960e+05 | 362496 |      1 | 3.985e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2323239012934497 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04091177970542261, dt = 0.000264690882812689
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 338.80 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357352363872593                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1045e+05 | 362496 |      1 | 4.473e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.13041406976864 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 631.7085295210001 (s)                                    [Godunov][rank=0]
snapshot 20 time 0.0411764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.0411764705882353, dt = 0.000357352363872593
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.31 us    (2.2%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 399.35 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035718602269055197                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1877e+05 | 362496 |      1 | 4.427e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.905759111911906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04153382295210789, dt = 0.00035718602269055197
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 382.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570870782069911                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8589e+05 | 362496 |      1 | 4.613e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7877578941965955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041891008974798444, dt = 0.0003570870782069911
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 325.48 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035704980128854194                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8830e+05 | 362496 |      1 | 4.081e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1501682146336205 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04224809605300543, dt = 0.00035704980128854194
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1.53 us    (0.3%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 428.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357071293113952                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8967e+05 | 362496 |      1 | 4.075e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1546808761079985 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04260514585429397, dt = 0.000357071293113952
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.6%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 315.82 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035714486768929324                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8760e+05 | 362496 |      1 | 4.084e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.147559230027396 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04296221714740792, dt = 0.00027307697023913613
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 362.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (61.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572343339700586                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9549e+05 | 362496 |      1 | 4.048e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4285256233540475 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 635.836890537 (s)                                        [Godunov][rank=0]
snapshot 21 time 0.04323529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.04323529411764706, dt = 0.0003572343339700586
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.66 us    (2.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 361.04 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035738514626987864                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0498e+05 | 362496 |      1 | 4.006e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2106267620799236 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04359252845161712, dt = 0.00035738514626987864
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 387.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035757343944916616                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6385e+05 | 362496 |      1 | 4.196e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.066027426628334 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.043949913597887, dt = 0.00035757343944916616
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1.86 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 417.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035779546443242145                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0545e+05 | 362496 |      1 | 4.501e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.860234950321197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04430748703733616, dt = 0.00035779546443242145
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.6%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 368.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (70.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035742846672194096                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0784e+05 | 362496 |      1 | 3.993e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.225836797818609 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.044665282501768586, dt = 0.00035742846672194096
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 356.99 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569581106920128                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4441e+05 | 362496 |      1 | 4.293e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.997366227844299 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.045022710968490524, dt = 0.0002714066785683006
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 353.41 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.24 us   (71.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566669170555168                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4675e+05 | 362496 |      1 | 4.281e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.282315202407176 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 639.972497197 (s)                                        [Godunov][rank=0]
snapshot 22 time 0.045294117647058825
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.045294117647058825, dt = 0.0003566669170555168
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.42 us    (2.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 622.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 387.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12544

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563525170340692                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1046e+05 | 362496 |      1 | 3.981e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2249598105987967 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04565078456411434, dt = 0.0003563525170340692
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.7%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 314.05 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035610905141217927                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9306e+05 | 362496 |      1 | 4.571e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8066279763067477 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04600713708114841, dt = 0.00035610905141217927
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 355.06 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035592773113960277                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0420e+05 | 362496 |      1 | 4.009e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.197769477246613 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04636324613256059, dt = 0.00035592773113960277
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 370.51 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035580211737116103                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3317e+05 | 362496 |      1 | 4.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.945064893181877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0467191738637002, dt = 0.00035580211737116103
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 314.57 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035572682810737873                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8750e+05 | 362496 |      1 | 4.603e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7826647175098764 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04707497598107136, dt = 0.0002779651953992296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 377.76 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (70.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355702555798484                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7778e+05 | 362496 |      1 | 4.130e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.423128907302669 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 644.179662265 (s)                                        [Godunov][rank=0]
snapshot 23 time 0.04735294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  102
analysis done
amr::Godunov: t = 0.04735294117647059, dt = 0.000355702555798484
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.39 us    (2.2%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557071198519391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9563e+05 | 362496 |      1 | 4.047e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1638482870253375 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047708643732269074, dt = 0.0003557071198519391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 385.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11520

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  416

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035575182903453906                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4763e+05 | 362496 |      1 | 4.849e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6410666214715195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04806435085212101, dt = 0.00035575182903453906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1.93 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 433.23 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10496

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  160

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355832047848302                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7529e+05 | 362496 |      1 | 4.141e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0924313775253984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04842010268115555, dt = 0.000355832047848302
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 45312.0 min = 45312.0 factor = 1
 - strategy "round robin" : max = 43046.4 min = 43046.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 45312
    max = 45312
    avg = 45312
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 401.98 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14592

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1184

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 45312                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  38144              [AMR Grid][rank=0]
Info: cfl dt = 0.0003579536422148582                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3590e+05 | 305152 |      1 | 4.147e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0892108827400793 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04877593472900385, dt = 0.0003579536422148582
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 38144.0 min = 38144.0 factor = 1
 - strategy "round robin" : max = 36236.8 min = 36236.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 38144
    max = 38144
    avg = 38144
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 363.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  160

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 38144                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035733039708454254                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7570e+05 | 305152 |      1 | 3.485e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6980217265088586 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04913388837121871, dt = 0.0002778763346636473
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 38144.0 min = 38144.0 factor = 1
 - strategy "round robin" : max = 36236.8 min = 36236.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 38144
    max = 38144
    avg = 38144
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 383.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.7%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1280    blocks


Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569387464808322                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0167e+06 | 376832 |      1 | 3.706e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6990008904087044 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 648.266671342 (s)                                        [Godunov][rank=0]
snapshot 24 time 0.049411764705882356
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.049411764705882356, dt = 0.0003569387464808322
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.13 us    (2.1%)
   patch tree reduce : 1.44 us    (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 409.00 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565234297425694                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0060e+05 | 376832 |      1 | 4.184e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0710124565336554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049768703452363186, dt = 0.0003565234297425694
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 369.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561999368741071                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1280e+05 | 376832 |      1 | 4.128e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.108985855952952 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05012522688210576, dt = 0.0003561999368741071
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 355.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355951912251442                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1169e+05 | 376832 |      1 | 4.133e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.102374082429579 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.050481426818979866, dt = 0.000355951912251442
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 325.55 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557692268374157                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1306e+05 | 376832 |      1 | 4.127e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.104871977176978 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05083737873123131, dt = 0.0003557692268374157
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 353.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (72.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035564336408822127                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9057e+05 | 376832 |      1 | 4.231e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0268667959322753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05119314795806872, dt = 0.0002774402772253992
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.4%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 338.20 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555823778019082                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1415e+05 | 376832 |      1 | 4.122e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4229315596760843 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 652.4278196070001 (s)                                    [Godunov][rank=0]
snapshot 25 time 0.05147058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.05147058823529412, dt = 0.0003555823778019082
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.52 us    (2.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 388.40 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555404805147335                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8630e+05 | 376832 |      1 | 4.792e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6710414080551024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05182617061309603, dt = 0.0003555404805147335
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 332.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035553831565259485                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1818e+05 | 376832 |      1 | 4.104e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1186941879537615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.052181711093610764, dt = 0.00035553831565259485
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.5%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 344.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035557135862183                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7853e+05 | 376832 |      1 | 4.289e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9839960261628136 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05253724940926336, dt = 0.00035557135862183
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 312.82 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035563581671547203                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0714e+05 | 376832 |      1 | 4.154e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0814674363600427 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05289282076788519, dt = 0.00035563581671547203
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 349.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557284928642747                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8882e+05 | 376832 |      1 | 4.240e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.01977814964591 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.053248456584600666, dt = 0.0002809551801052218
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 334.67 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558208535281932                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1286e+05 | 376832 |      1 | 4.128e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4501586507433237 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 656.643759733 (s)                                        [Godunov][rank=0]
snapshot 26 time 0.05352941176470589
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.05352941176470589, dt = 0.0003558208535281932
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.73 us    (2.6%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 354.69 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559571643612555                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0187e+05 | 376832 |      1 | 4.178e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.065713263975904 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05388523261823408, dt = 0.0003559571643612555
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 353.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035611478224853275                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3886e+05 | 376832 |      1 | 4.492e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.852597627295063 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05424118978259534, dt = 0.00035611478224853275
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (0.7%)
   patch tree reduce : 1.57 us    (0.2%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.1%)
   LB compute        : 754.50 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562917795998481                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2176e+05 | 376832 |      1 | 4.586e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7956917414632643 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05459730456484387, dt = 0.0003562917795998481
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 354.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561371899162657                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2317e+05 | 376832 |      1 | 4.578e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8018981228187503 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05495359634444372, dt = 0.0003561371899162657
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 380.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558774188144993                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6969e+05 | 376832 |      1 | 4.896e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6186996617995986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05530973353435998, dt = 0.0002785017597576739
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 378.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557156166584369                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1284e+05 | 376832 |      1 | 4.128e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.42872409057309 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 660.985301367 (s)                                        [Godunov][rank=0]
snapshot 27 time 0.055588235294117654
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.055588235294117654, dt = 0.0003557156166584369
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.51 us    (2.3%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 460.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 382.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (71.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355550612442237                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9944e+05 | 376832 |      1 | 4.190e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0565463458469146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05594395091077609, dt = 0.000355550612442237
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 352.01 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355426138098546                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1628e+05 | 376832 |      1 | 4.113e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.112337295879422 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05629950152321833, dt = 0.000355426138098546
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.3%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 406.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (74.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003553378625112624                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0273e+05 | 376832 |      1 | 4.174e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0652238370300053 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05665492766131688, dt = 0.0003553378625112624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 371.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003552820157923512                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0123e+05 | 376832 |      1 | 4.181e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.059355292235843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05701026552382814, dt = 0.0003552820157923512
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 363.74 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003552552620000799                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0011e+05 | 376832 |      1 | 4.187e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0550853986683606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05736554753962049, dt = 0.00028151128390892233
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 396.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035525375342365775                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1457e+05 | 376832 |      1 | 4.120e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4596153418512774 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 665.1348346340001 (s)                                    [Godunov][rank=0]
snapshot 28 time 0.05764705882352941
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.05764705882352941, dt = 0.00035525375342365775
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.43 us    (2.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 377.59 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003552723273509568                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9343e+05 | 376832 |      1 | 4.218e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0321625121721594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05800231257695307, dt = 0.0003552723273509568
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 333.92 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003553129659124039                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7923e+05 | 376832 |      1 | 4.286e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.98413486250895 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058357584904304025, dt = 0.0003553129659124039
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 315.35 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035537315733939984                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0594e+05 | 376832 |      1 | 4.160e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0751330530696963 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05871289787021643, dt = 0.00035537315733939984
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 351.68 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554507906732302                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1115e+05 | 376832 |      1 | 4.136e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0933642808425947 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.059068271027555824, dt = 0.0003554507906732302
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 362.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035554409162120206                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0599e+05 | 376832 |      1 | 4.159e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.076489105574171 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05942372181822905, dt = 0.0002821605347121253
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 392.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035562874597363934                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0335e+05 | 376832 |      1 | 4.171e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4350576588269432 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 669.473635962 (s)                                        [Godunov][rank=0]
snapshot 29 time 0.05970588235294118
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.05970588235294118, dt = 0.00035562874597363934
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.30 us    (2.3%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 382.37 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035574649711552213                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1048e+05 | 376832 |      1 | 4.139e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.093290328079002 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06006151109891482, dt = 0.00035574649711552213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.2%)
   LB compute        : 448.26 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557420683277161                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4018e+05 | 376832 |      1 | 4.485e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.855413203976884 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06041725759603034, dt = 0.0003557420683277161
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (1.2%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 350.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555432610434749                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4515e+05 | 376832 |      1 | 4.459e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8722760456031744 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.060772999664358056, dt = 0.0003555432610434749
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 337.09 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003553833395717578                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0980e+05 | 376832 |      1 | 4.142e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0902337415968044 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061128542925401534, dt = 0.0003553833395717578
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 346.31 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003552564873286188                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0993e+05 | 376832 |      1 | 4.141e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0892866970439705 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061483926264973295, dt = 0.00028077961737964924
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.7%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 307.26 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035517727019679065                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1406e+05 | 376832 |      1 | 4.123e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4518463254954654 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 673.6682849670001 (s)                                    [Godunov][rank=0]
snapshot 30 time 0.061764705882352944
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.061764705882352944, dt = 0.00035517727019679065
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 31.25 us   (7.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 550.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 366.69 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035509839632940927                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9691e+05 | 376832 |      1 | 4.729e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.704003772424036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06211988315254974, dt = 0.00035509839632940927
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 341.11 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035504238693412414                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0633e+05 | 376832 |      1 | 4.158e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.074601271004656 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06247498154887915, dt = 0.00035504238693412414
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 356.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  352

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355006776608572                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1003e+05 | 376832 |      1 | 4.141e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.086664617192606 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06283002393581327, dt = 0.000355006776608572
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 354.08 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003549895663032612                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1363e+05 | 376832 |      1 | 4.125e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.098582772609319 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06318503071242185, dt = 0.0003549895663032612
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 313.60 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035498906138086236                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4093e+05 | 376832 |      1 | 4.481e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.851861998027806 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0635400202787251, dt = 0.00028350913303960834
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 340.40 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003550001795780975                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0831e+05 | 376832 |      1 | 4.149e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4601117313744756 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 677.8957988000001 (s)                                    [Godunov][rank=0]
snapshot 31 time 0.06382352941176471
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.06382352941176471, dt = 0.0003550001795780975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.34 us    (1.8%)
   patch tree reduce : 1.72 us    (0.3%)
   gen split merge   : 510.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 488.86 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003550260408580008                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9605e+05 | 376832 |      1 | 4.205e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0388920886092903 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0641785295913428, dt = 0.0003550260408580008
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 366.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003550649079811531                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0757e+05 | 376832 |      1 | 4.152e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0781766651728795 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06453355563220081, dt = 0.0003550649079811531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 360.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003551157499842869                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0958e+05 | 376832 |      1 | 4.143e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0853551240051775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06488862054018196, dt = 0.0003551157499842869
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 421.27 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035517766192499873                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1541e+05 | 376832 |      1 | 4.117e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1055520349153762 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06524373629016625, dt = 0.00035517766192499873
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 395.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035524985414255955                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0532e+05 | 376832 |      1 | 4.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.071875468250695 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06559891395209125, dt = 0.00028343898908522736
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 314.85 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (65.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003553146385924044                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0714e+05 | 376832 |      1 | 4.154e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4563420683519475 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 682.0386232550001 (s)                                    [Godunov][rank=0]
snapshot 32 time 0.06588235294117648
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.06588235294117648, dt = 0.0003553146385924044
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.90 us    (2.4%)
   patch tree reduce : 22.22 us   (5.4%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 369.38 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1120

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  39936              [AMR Grid][rank=0]
Info: cfl dt = 0.000361522010974903                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5175e+05 | 319488 |      1 | 4.250e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.009792004624179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06623766757976889, dt = 0.000361522010974903
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 39936.0 min = 39936.0 factor = 1
 - strategy "round robin" : max = 37939.2 min = 37939.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 39936
    max = 39936
    avg = 39936
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 352.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 39936                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036062518220910696                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8162e+05 | 319488 |      1 | 3.624e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5914104749122706 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06659918959074379, dt = 0.00036062518220910696
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 39936.0 min = 39936.0 factor = 1
 - strategy "round robin" : max = 37939.2 min = 37939.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 39936
    max = 39936
    avg = 39936
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 390.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9216

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1024    blocks


Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003598474685913763                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0112e+06 | 376832 |      1 | 3.726e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.483903330722033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0669598147729529, dt = 0.0003598474685913763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (1.2%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 352.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035917314179919994                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0432e+05 | 376832 |      1 | 4.167e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1088217386947727 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06731966224154427, dt = 0.00035917314179919994
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.4%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 344.78 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035858870657831004                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1012e+05 | 376832 |      1 | 4.140e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1228826153211022 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06767883538334347, dt = 0.00026234108724476624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 349.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035821571533415405                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0589e+05 | 376832 |      1 | 4.160e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.270363267053198 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 686.0961422280001 (s)                                    [Godunov][rank=0]
snapshot 33 time 0.06794117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.06794117647058824, dt = 0.00035821571533415405
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.46 us    (2.2%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 400.44 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (70.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577602192623078                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1632e+05 | 376832 |      1 | 4.112e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1357985314074663 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06829939218592239, dt = 0.0003577602192623078
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 321.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573670660164082                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0825e+05 | 376832 |      1 | 4.149e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1042300921227612 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06865715240518469, dt = 0.0003573670660164082
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 411.80 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035702870236839723                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2174e+05 | 376832 |      1 | 4.088e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.146847839779427 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0690145194712011, dt = 0.00035702870236839723
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 396.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035673862054576364                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0321e+05 | 376832 |      1 | 4.172e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0806758892069532 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0693715481735695, dt = 0.00035673862054576364
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 360.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564911999694363                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1345e+05 | 376832 |      1 | 4.125e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.113065888529898 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06972828679411526, dt = 0.00027171320588474657
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 344.83 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (61.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035633025146976816                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0827e+05 | 376832 |      1 | 4.149e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3576510375305224 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 690.2340580580001 (s)                                    [Godunov][rank=0]
snapshot 34 time 0.07
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.07, dt = 0.00035633025146976816
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.48 us    (2.3%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 397.27 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (71.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561463783635791                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5975e+05 | 376832 |      1 | 4.383e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.926717526720247 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07035633025146977, dt = 0.0003561463783635791
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 317.75 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003559932845139491                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1597e+05 | 376832 |      1 | 4.618e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7762293817446495 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07071247662983335, dt = 0.0003559932845139491
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 330.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035586677905737177                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2856e+05 | 376832 |      1 | 4.058e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.15796025926312 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0710684699143473, dt = 0.00035586677905737177
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 393.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035576126833240795                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8012e+05 | 376832 |      1 | 4.282e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9921467933565142 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07142433669340467, dt = 0.00035576126833240795
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 357.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035567456441488955                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1521e+05 | 376832 |      1 | 4.117e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1105435174307257 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07178009796173708, dt = 0.0002787255676746925
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.6%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 360.22 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556192504870765                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1234e+05 | 376832 |      1 | 4.130e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4293380963789244 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 694.4432938040001 (s)                                    [Godunov][rank=0]
snapshot 35 time 0.07205882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.07205882352941177, dt = 0.0003556192504870765
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.18 us   (3.1%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 368.14 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355561446939343                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0042e+05 | 376832 |      1 | 4.185e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.059038823813435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07241444277989885, dt = 0.000355561446939343
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 368.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555177566119663                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1250e+05 | 376832 |      1 | 4.130e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0995673503834147 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07277000422683819, dt = 0.0003555177566119663
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 331.71 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554868861963291                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8462e+05 | 376832 |      1 | 4.260e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0045053845840637 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07312552198345015, dt = 0.0003554868861963291
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.8%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 349.26 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554677097884707                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0644e+05 | 376832 |      1 | 4.157e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0783618588633774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07348100886964648, dt = 0.0003554677097884707
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 321.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554592473674908                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2237e+05 | 376832 |      1 | 4.085e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.132284304708575 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07383647657943496, dt = 0.00028117047938858164
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 352.47 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035545990194054815                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0722e+05 | 376832 |      1 | 4.154e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.436895513866184 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 698.642579115 (s)                                        [Godunov][rank=0]
snapshot 36 time 0.07411764705882354
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  104
analysis done
amr::Godunov: t = 0.07411764705882354, dt = 0.00035545990194054815
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.98 us    (2.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 364.96 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554685313210252                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0520e+05 | 376832 |      1 | 4.163e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.073894655302492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07447310696076409, dt = 0.0003554685313210252
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.7%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 324.84 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (72.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8192

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47104                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554857661196338                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8157e+05 | 376832 |      1 | 4.275e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9937283809824153 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07482857549208512, dt = 0.0003554857661196338
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 389.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1024    blocks


Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355511024419818                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0239e+06 | 434176 |      1 | 4.241e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0178624095605633 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07518406125820475, dt = 0.000355511024419818
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 356.46 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555438055821548                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7745e+05 | 434176 |      1 | 5.585e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2917257993951643 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07553957228262456, dt = 0.0003555438055821548
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 317.25 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035558367945779604                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2716e+05 | 434176 |      1 | 4.683e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7332887005902546 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07589511608820672, dt = 0.00028135450002858553
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 399.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035562013503897855                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2474e+05 | 434176 |      1 | 4.695e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1573076068400505 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 703.099097098 (s)                                        [Godunov][rank=0]
snapshot 37 time 0.0761764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
analysis done
amr::Godunov: t = 0.0761764705882353, dt = 0.00035562013503897855
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.72 us    (2.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 352.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556718066027286                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2429e+05 | 434176 |      1 | 4.697e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.725398426694625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07653209072327428, dt = 0.0003556718066027286
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 349.58 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557296712562287                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1368e+05 | 434176 |      1 | 4.752e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6945271807612947 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07688776252987702, dt = 0.0003557296712562287
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.3%)
   patch tree reduce : 1.79 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 441.98 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (71.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035566663978524115                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1778e+05 | 434176 |      1 | 4.731e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.70705878620635 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07724349220113325, dt = 0.00035566663978524115
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 323.59 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035560165319055767                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1562e+05 | 434176 |      1 | 4.742e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.700180106343257 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07759915884091849, dt = 0.00035560165319055767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.7%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 310.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355547876132055                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0359e+05 | 434176 |      1 | 4.805e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6642444543099972 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07795476049410904, dt = 0.00028053362353802624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 323.54 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555130652084436                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3167e+05 | 434176 |      1 | 5.221e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.934528426345838 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 707.9183342800001 (s)                                    [Godunov][rank=0]
snapshot 38 time 0.07823529411764707
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
analysis done
amr::Godunov: t = 0.07823529411764707, dt = 0.0003555130652084436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.66 us    (2.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 542.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 383.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035547693173558514                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3315e+05 | 434176 |      1 | 5.211e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4559360091689757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07859080718285551, dt = 0.00035547693173558514
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 357.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035544955747150665                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6497e+05 | 434176 |      1 | 5.020e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.549452363985403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07894628411459109, dt = 0.00035544955747150665
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 387.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035543026224902653                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3444e+05 | 434176 |      1 | 4.646e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.754001010032826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0793017336720626, dt = 0.00035543026224902653
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 409.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (73.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554184520685046                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2183e+05 | 434176 |      1 | 4.710e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7166986806156257 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07965716393431163, dt = 0.0003554184520685046
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 329.68 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554136090535713                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3828e+05 | 434176 |      1 | 4.627e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7650935877510427 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08001258238638013, dt = 0.00028153526067870027
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 366.28 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (69.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554146135604817                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4118e+05 | 434176 |      1 | 5.161e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9636339969600245 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 712.749143093 (s)                                        [Godunov][rank=0]
snapshot 39 time 0.08029411764705884
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
analysis done
amr::Godunov: t = 0.08029411764705884, dt = 0.0003554146135604817
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.00 us   (2.6%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 361.07 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035542115120984583                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8741e+05 | 434176 |      1 | 4.893e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.61515813976686 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08064953226061931, dt = 0.00035542115120984583
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.5%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 354.64 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035543354392417214                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6958e+05 | 434176 |      1 | 4.993e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5626475026729256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08100495341182916, dt = 0.00035543354392417214
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.8%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 310.35 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554514904024379                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2169e+05 | 434176 |      1 | 5.284e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4216081119134367 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08136038695575333, dt = 0.0003554514904024379
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 356.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035547473149734115                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3216e+05 | 434176 |      1 | 4.658e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.74732220553372 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08171583844615576, dt = 0.00035547473149734115
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 314.71 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555030472575082                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5363e+05 | 434176 |      1 | 5.086e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.51603628731884 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08207131317765311, dt = 0.00028162799881749356
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 28.80 us   (7.6%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 336.96 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035552906463837304                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3264e+05 | 434176 |      1 | 4.655e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.177845953306566 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 717.625376627 (s)                                        [Godunov][rank=0]
snapshot 40 time 0.0823529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  118
analysis done
amr::Godunov: t = 0.0823529411764706, dt = 0.00035552906463837304
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.81 us    (2.4%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 382.28 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555660237279246                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2775e+05 | 434176 |      1 | 4.680e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7349184525509678 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08270847024110897, dt = 0.0003555660237279246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 385.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (73.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003555078750998767                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7796e+05 | 434176 |      1 | 4.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.588405583846098 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0830640362648369, dt = 0.0003555078750998767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 327.93 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (63.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035545117945049847                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5033e+05 | 434176 |      1 | 5.106e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5065374374616427 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08341954413993677, dt = 0.00035545117945049847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 319.38 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11264

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  96

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003554024182260407                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2812e+05 | 434176 |      1 | 4.678e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7353913072356333 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08377499531938727, dt = 0.0003554024182260407
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54272.0 min = 54272.0 factor = 1
 - strategy "round robin" : max = 51558.4 min = 51558.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54272
    max = 54272
    avg = 54272
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 338.53 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15360

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1120

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 54272                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  47104              [AMR Grid][rank=0]
Info: cfl dt = 0.0003636361328168032                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9381e+05 | 376832 |      1 | 4.747e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6952037452412743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08413039773761331, dt = 0.0002813669682690395
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47104.0 min = 47104.0 factor = 1
 - strategy "round robin" : max = 44748.8 min = 44748.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47104
    max = 47104
    avg = 47104
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.2%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 380.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (72.1%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7168

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1344    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629126077852667                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0258e+06 | 452096 |      1 | 4.407e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2983713941110633 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 722.376207 (s)                                           [Godunov][rank=0]
snapshot 41 time 0.08441176470588235
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.08441176470588235, dt = 0.0003629126077852667
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.98 us    (2.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 375.58 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000362068122317254                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3527e+05 | 452096 |      1 | 4.834e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7027677926630655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08477467731366763, dt = 0.000362068122317254
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 404.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (74.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036132404714345645                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4171e+05 | 452096 |      1 | 5.371e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4267542050633057 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08513674543598489, dt = 0.00036132404714345645
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.6%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 367.37 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003606672889740691                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3383e+05 | 452096 |      1 | 4.841e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.686805627667368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08549806948312834, dt = 0.0003606672889740691
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 2.32 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 410.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036008667177838966                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3462e+05 | 452096 |      1 | 4.837e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6842001976887055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08585873677210241, dt = 0.00036008667177838966
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.6%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 357.47 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (76.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035957262157010784                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3188e+05 | 452096 |      1 | 4.851e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.672022275579728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08621882344388081, dt = 0.00025176479141331143
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 345.86 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (72.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035925118519141515                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2072e+05 | 452096 |      1 | 4.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8458424339639352 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 727.288110759 (s)                                        [Godunov][rank=0]
snapshot 42 time 0.08647058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.08647058823529412, dt = 0.00035925118519141515
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.70 us    (2.3%)
   patch tree reduce : 1.45 us    (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 392.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035883165179184044                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3302e+05 | 452096 |      1 | 4.846e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.66907272199712 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08682983942048553, dt = 0.00035883165179184044
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 354.42 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584590416619161                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.5190e+05 | 452096 |      1 | 4.749e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.719917410242243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08718867107227737, dt = 0.0003584590416619161
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 358.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358127828497796                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2187e+05 | 452096 |      1 | 4.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.631378470336762 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08754713011393929, dt = 0.000358127828497796
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 312.33 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035783321547341065                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4677e+05 | 452096 |      1 | 5.339e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4147747320793065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08790525794243709, dt = 0.00035783321547341065
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 341.86 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575710306763018                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9222e+05 | 452096 |      1 | 5.067e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5422973443066326 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08826309115791049, dt = 0.00026632060679539216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 331.36 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035739613803129945                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3830e+05 | 452096 |      1 | 4.818e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9898372702998939 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 732.405238086 (s)                                        [Godunov][rank=0]
snapshot 43 time 0.08852941176470588
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.08852941176470588, dt = 0.00035739613803129945
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.63 us    (2.3%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 388.41 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035718195199600366                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3424e+05 | 452096 |      1 | 4.839e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.658766235842123 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08888680790273719, dt = 0.00035718195199600366
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 325.43 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035699130917891595                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4680e+05 | 452096 |      1 | 4.775e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.692892319998749 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0892439898547332, dt = 0.00035699130917891595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 343.05 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035682170078759235                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3306e+05 | 452096 |      1 | 4.845e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6524029483693368 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08960098116391212, dt = 0.00035682170078759235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 320.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (72.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566709295521944                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3982e+05 | 452096 |      1 | 4.810e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.67036154565684 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0899578028646997, dt = 0.0003566709295521944
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.8%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 308.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565370685410488                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1211e+05 | 452096 |      1 | 4.957e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5905223800551074 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09031447379425189, dt = 0.00027376149986575726
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 3.43 us    (0.9%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.17 us    (0.6%)
   LB compute        : 354.34 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564454407490829                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1198e+05 | 452096 |      1 | 4.957e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9880672913017121 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 737.2640690510001 (s)                                    [Godunov][rank=0]
snapshot 44 time 0.09058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09058823529411765, dt = 0.0003564454407490829
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.32 us    (2.3%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.32 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563373907443979                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5621e+05 | 452096 |      1 | 5.280e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4302253361371746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09094468073486674, dt = 0.0003563373907443979
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 385.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (74.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356242058407213                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3933e+05 | 452096 |      1 | 4.813e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6653389906077924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09130101812561113, dt = 0.000356242058407213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 339.44 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561580793290159                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3745e+05 | 452096 |      1 | 4.823e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6592930211244052 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09165726018401835, dt = 0.0003561580793290159
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 373.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560830922464516                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7148e+05 | 452096 |      1 | 5.188e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.471560405478951 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09201341826334736, dt = 0.0003560830922464516
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 316.07 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035601631321092254                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3055e+05 | 452096 |      1 | 4.858e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6385474153450557 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09236950135559381, dt = 0.00027755746793560465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 308.11 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (61.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10432

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035596979361274565                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7048e+05 | 452096 |      1 | 5.194e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9239089594457335 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 742.224517064 (s)                                        [Godunov][rank=0]
snapshot 45 time 0.09264705882352942
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09264705882352942, dt = 0.00035596979361274565
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.92 us    (2.6%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 354.44 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355915946282985                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3676e+05 | 452096 |      1 | 5.403e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3718502051751122 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09300302861714216, dt = 0.000355915946282985
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.6%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 339.83 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000355868596390427                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0771e+05 | 452096 |      1 | 4.981e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.572561714814816 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09335894456342514, dt = 0.000355868596390427
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.6%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 368.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003558272625564201                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8640e+05 | 452096 |      1 | 5.100e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5118302875194405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09371481315981557, dt = 0.0003558272625564201
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 319.54 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557915209197789                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3804e+05 | 452096 |      1 | 4.820e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.657875492590928 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.094070640422372, dt = 0.0003557915209197789
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 350.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (73.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035576099812014344                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3272e+05 | 452096 |      1 | 4.847e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6425221228277667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09442643194329177, dt = 0.00027945040964941215
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 358.39 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (73.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035574061531858884                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2452e+05 | 452096 |      1 | 4.890e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0572670234304966 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 747.15683906 (s)                                         [Godunov][rank=0]
snapshot 46 time 0.09470588235294118
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09470588235294118, dt = 0.00035574061531858884
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.41 us    (2.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 342.37 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035571860598679247                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3041e+05 | 452096 |      1 | 4.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6356089292030545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09506162296825978, dt = 0.00035571860598679247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 386.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557009942572025                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3656e+05 | 452096 |      1 | 4.827e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.652856965104618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09541734157424657, dt = 0.0003557009942572025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 388.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (75.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035568754951304166                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3239e+05 | 452096 |      1 | 4.849e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6409130707361856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09577304256850377, dt = 0.00035568754951304166
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 401.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (72.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556780693610939                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4124e+05 | 452096 |      1 | 4.803e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.665892722320203 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09612873011801681, dt = 0.0003556780693610939
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 319.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035567237652296875                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2830e+05 | 452096 |      1 | 4.870e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.629156525065901 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09648440818737791, dt = 0.00028029769497503465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 346.61 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035567052978885996                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3786e+05 | 452096 |      1 | 4.820e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0933000124191388 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 752.050808232 (s)                                        [Godunov][rank=0]
snapshot 47 time 0.09676470588235295
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09676470588235295, dt = 0.00035567052978885996
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.00 us   (2.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 385.15 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556712312358806                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3522e+05 | 452096 |      1 | 4.834e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6487000709322115 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0971203764121418, dt = 0.0003556712312358806
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.5%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 381.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (74.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556753374015935                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3974e+05 | 452096 |      1 | 4.811e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6614985433204486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09747604764337768, dt = 0.0003556753374015935
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 357.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14528

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  656

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556827444739563                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3006e+05 | 452096 |      1 | 4.861e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6341214074478065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09783172298077927, dt = 0.0003556827444739563
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 325.13 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556933635623897                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3756e+05 | 452096 |      1 | 4.822e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.655432893414401 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09818740572525322, dt = 0.0003556933635623897
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 342.43 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557071190442121                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1876e+05 | 452096 |      1 | 4.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6022498798208114 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09854309908881562, dt = 0.0002804303229490962
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 331.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (62.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035572016394723623                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6928e+05 | 452096 |      1 | 5.201e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9411400035544615 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 756.956547493 (s)                                        [Godunov][rank=0]
snapshot 48 time 0.09882352941176471
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.09882352941176471, dt = 0.00035572016394723623
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.77 us    (2.3%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 408.52 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035573938126225825                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3609e+05 | 452096 |      1 | 4.830e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6515273411984137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09917924957571195, dt = 0.00035573938126225825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 21.54 us   (5.9%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 323.34 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (69.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035576160160667047                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7403e+05 | 452096 |      1 | 5.173e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.475892397586415 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0995349889569742, dt = 0.00035576160160667047
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (0.7%)
   patch tree reduce : 2.12 us    (0.2%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.1%)
   LB compute        : 848.60 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (70.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035578303151691633                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9011e+05 | 452096 |      1 | 5.079e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.52159243350214 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09989075055858088, dt = 0.00035578303151691633
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 358.88 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035575903711111733                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3447e+05 | 452096 |      1 | 4.838e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6474058720213556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10024653359009779, dt = 0.00035575903711111733
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 377.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (71.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035573865658362056                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2300e+05 | 452096 |      1 | 4.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.614733100207 (tsim/hr)                               [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1006022926272089, dt = 0.0002800603139675728
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 365.04 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003557251352936357                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1778e+05 | 452096 |      1 | 4.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0467284283711504 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 761.904515023 (s)                                        [Godunov][rank=0]
snapshot 49 time 0.10088235294117648
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.10088235294117648, dt = 0.0003557251352936357
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.63 us    (2.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 344.43 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035571073108040083                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3327e+05 | 452096 |      1 | 4.844e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6435866809008415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10123807807647012, dt = 0.00035571073108040083
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 308.43 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13248

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003556994479029633                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3599e+05 | 452096 |      1 | 4.830e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6511788320589575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10159378880755052, dt = 0.0003556994479029633
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.6%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 359.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17344

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1360

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.00036463602973240116                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9273e+05 | 394752 |      1 | 4.980e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5715108687041326 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10194948825545348, dt = 0.00036463602973240116
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 399.86 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (74.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9152

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  336

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Will refine      1024    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  54720              [AMR Grid][rank=0]
Info: cfl dt = 0.0003637379115838222                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.7835e+05 | 437760 |      1 | 4.474e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9337421794923983 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10231412428518588, dt = 0.0003637379115838222
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 372.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629413471646726                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2116e+05 | 437760 |      1 | 4.752e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.755448112190829 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1026778621967697, dt = 0.0002633142738185379
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.6%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 362.48 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036242319507028367                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3979e+05 | 437760 |      1 | 4.658e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.03504121848578 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 766.716718495 (s)                                        [Godunov][rank=0]
snapshot 50 time 0.10294117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.10294117647058824, dt = 0.00036242319507028367
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.17 us    (2.3%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 381.15 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003617697608513508                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8035e+05 | 437760 |      1 | 5.610e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3257989635145546 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10330359966565852, dt = 0.0003617697608513508
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 322.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003611854465177538                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4304e+05 | 437760 |      1 | 5.193e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5081104942615347 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10366536942650988, dt = 0.0003611854465177538
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 352.02 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003606616776254935                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1222e+05 | 437760 |      1 | 4.799e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7095360458643416 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10402655487302763, dt = 0.0003606616776254935
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 319.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036019109470376723                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3037e+05 | 437760 |      1 | 4.705e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.75944840841187 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10438721655065313, dt = 0.00036019109470376723
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 359.96 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003597673607465166                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2198e+05 | 437760 |      1 | 4.748e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7310060803067358 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1047474076453569, dt = 0.00025259235464311636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 359.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000359497026347031                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3406e+05 | 437760 |      1 | 4.687e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9402603145204311 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 771.586487455 (s)                                        [Godunov][rank=0]
snapshot 51 time 0.10500000000000001
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.10500000000000001, dt = 0.000359497026347031
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.46 us    (2.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 353.82 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035914061333433355                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2728e+05 | 437760 |      1 | 4.721e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.741396830785838 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10535949702634705, dt = 0.00035914061333433355
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 321.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003588190136921688                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3222e+05 | 437760 |      1 | 4.696e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7532708771316714 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10571863763968138, dt = 0.0003588190136921688
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 341.37 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035853004622171485                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2507e+05 | 437760 |      1 | 4.732e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.729711763650086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10607745665337355, dt = 0.00035853004622171485
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.6%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 339.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035827007418936667                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3107e+05 | 437760 |      1 | 4.702e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.745190593266056 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10643598669959527, dt = 0.00035827007418936667
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 352.21 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035803593919389495                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6603e+05 | 437760 |      1 | 5.055e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5515912649894896 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10679425677378464, dt = 0.00026456675562713805
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 321.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (70.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035787905782693244                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3754e+05 | 437760 |      1 | 4.669e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.039819637757283 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 776.3271048400001 (s)                                    [Godunov][rank=0]
snapshot 52 time 0.10705882352941178
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.10705882352941178, dt = 0.00035787905782693244
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.64 us    (2.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 350.20 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357683341468964                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3039e+05 | 437760 |      1 | 4.705e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7382095670024627 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1074167025872387, dt = 0.000357683341468964
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 368.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035750667085645616                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3344e+05 | 437760 |      1 | 4.690e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7456887085365196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10777438592870767, dt = 0.00035750667085645616
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 350.15 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035734709752648623                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2291e+05 | 437760 |      1 | 4.743e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7133903493991425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10813189259956413, dt = 0.00035734709752648623
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 392.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572029032959443                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3624e+05 | 437760 |      1 | 4.676e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.751347594771287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10848923969709061, dt = 0.0003572029032959443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 319.76 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035707257105669087                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2756e+05 | 437760 |      1 | 4.719e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7247316342009187 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10884644260038655, dt = 0.0002712044584369938
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 384.71 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035698260978051205                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4256e+05 | 437760 |      1 | 4.644e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.102192288933918 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 781.0161811500001 (s)                                    [Godunov][rank=0]
snapshot 53 time 0.10911764705882354
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.10911764705882354, dt = 0.00035698260978051205
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.34 us    (2.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 364.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568734539069244                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3088e+05 | 437760 |      1 | 4.703e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.732799689591065 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10947462966860405, dt = 0.0003568734539069244
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 378.62 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035677482691345364                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3720e+05 | 437760 |      1 | 4.671e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7505187366253567 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10983150312251097, dt = 0.00035677482691345364
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (0.5%)
   patch tree reduce : 1.60 us    (0.1%)
   gen split merge   : 1.08 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 1.10 ms    (98.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566857676222177                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3314e+05 | 437760 |      1 | 4.691e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.737832064512113 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11018827794942443, dt = 0.0003566857676222177
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 350.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566054226491486                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4812e+05 | 437760 |      1 | 5.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.487766835883843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11054496371704664, dt = 0.0003566054226491486
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 427.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565330335353179                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2620e+05 | 437760 |      1 | 4.726e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7161951752328757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11090156913969579, dt = 0.00027490144853951903
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 339.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035648256193198036                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3691e+05 | 437760 |      1 | 4.672e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1180761310126823 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 785.745964585 (s)                                        [Godunov][rank=0]
snapshot 54 time 0.11117647058823531
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11117647058823531, dt = 0.00035648256193198036
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.49 us    (2.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 379.28 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564226285657342                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2827e+05 | 437760 |      1 | 4.716e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7213252480060497 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11153295315016729, dt = 0.0003564226285657342
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 344.67 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035636862413688315                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2754e+05 | 437760 |      1 | 4.720e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7187089558418367 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11188937577873302, dt = 0.00035636862413688315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.5%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 323.24 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563196296091859                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2417e+05 | 437760 |      1 | 4.737e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.708440176029107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1122457444028699, dt = 0.0003563196296091859
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 352.08 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562752696591097                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2917e+05 | 437760 |      1 | 4.711e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7227102413417787 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11260206403247909, dt = 0.0003562752696591097
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 342.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035623520972673635                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2801e+05 | 437760 |      1 | 4.717e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7189743928678225 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1129583393021382, dt = 0.00027695481550887857
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 329.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562069905709439                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2892e+05 | 437760 |      1 | 4.713e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.115686713526551 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 790.6152584280001 (s)                                    [Godunov][rank=0]
snapshot 55 time 0.11323529411764707
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11323529411764707, dt = 0.0003562069905709439
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.34 us    (2.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 372.07 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561738468645639                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2136e+05 | 437760 |      1 | 4.751e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.698968165553953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11359150110821802, dt = 0.0003561738468645639
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.3%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 342.28 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035614425203715555                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2945e+05 | 437760 |      1 | 4.710e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.72242038529971 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11394767495508258, dt = 0.00035614425203715555
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 374.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035611798806670607                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2875e+05 | 437760 |      1 | 4.713e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.720127413961916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11430381920711974, dt = 0.00035611798806670607
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 312.70 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560948601201352                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2631e+05 | 437760 |      1 | 4.726e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.712797547839492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11465993719518644, dt = 0.0003560948601201352
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.6%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 332.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035607469405417536                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2974e+05 | 437760 |      1 | 4.708e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7226652933056794 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11501603205530657, dt = 0.00027808559175225567
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 365.55 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560609865330587                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2757e+05 | 437760 |      1 | 4.719e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.121260046518044 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 795.3282015550001 (s)                                    [Godunov][rank=0]
snapshot 56 time 0.11529411764705882
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11529411764705882, dt = 0.0003560609865330587
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.50 us    (2.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 337.14 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035604571545195797                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3207e+05 | 437760 |      1 | 4.697e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7292192172508556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11565017863359188, dt = 0.00035604571545195797
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 326.55 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035603301352170124                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3200e+05 | 437760 |      1 | 4.697e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.728888583693867 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11600622434904384, dt = 0.00035603301352170124
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.5%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 323.95 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035602276693641043                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2281e+05 | 437760 |      1 | 4.744e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7019042942068148 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11636225736256554, dt = 0.00035602276693641043
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.3%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 359.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035601487411493607                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1874e+05 | 437760 |      1 | 4.765e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6899027804434423 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11671828012950196, dt = 0.00035601487411493607
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 343.44 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035600924446942383                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2184e+05 | 437760 |      1 | 4.749e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6989224518256676 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1170742950036169, dt = 0.0002786461728536971
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 312.91 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356006411599874                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8558e+05 | 437760 |      1 | 4.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0293076646170993 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 800.09346428 (s)                                         [Godunov][rank=0]
snapshot 57 time 0.11735294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11735294117647059, dt = 0.000356006411599874
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.51 us    (2.5%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 359.86 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035600462345286555                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2549e+05 | 437760 |      1 | 4.730e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.709547875934427 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11770894758807046, dt = 0.00035600462345286555
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 352.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560048999176742                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1914e+05 | 437760 |      1 | 4.763e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.690930445966453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11806495221152333, dt = 0.0003560048999176742
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.5%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 341.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035600718324039343                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1759e+05 | 437760 |      1 | 4.771e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6864113556458116 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.118420957111441, dt = 0.00035600718324039343
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 338.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (63.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035601142152092764                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2183e+05 | 437760 |      1 | 4.749e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.698831179437965 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11877696429468139, dt = 0.00035601142152092764
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.6%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 340.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003560175683093777                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6704e+05 | 437760 |      1 | 5.049e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5384626247907227 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11913297571620232, dt = 0.0002787889896800344
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 336.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11456

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  80

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035602371012721996                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1969e+05 | 437760 |      1 | 4.760e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1085436039672576 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 804.84475991 (s)                                         [Godunov][rank=0]
snapshot 58 time 0.11941176470588236
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  120
analysis done
amr::Godunov: t = 0.11941176470588236, dt = 0.00035602371012721996
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 54720.0 min = 54720.0 factor = 1
 - strategy "round robin" : max = 51984.0 min = 51984.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 54720
    max = 54720
    avg = 54720
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.04 us   (2.5%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 383.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15552

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1104

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 54720                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  47552              [AMR Grid][rank=0]
Info: cfl dt = 0.0003649731933601764                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7721e+05 | 380416 |      1 | 4.895e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.61856334031914 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11976778841600957, dt = 0.0003649731933601764
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (1.3%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 742.00 ns  (0.2%)
   LB compute        : 317.02 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.3%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7360

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  16

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1280    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003640909518111677                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0265e+06 | 452096 |      1 | 4.404e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9832416761804628 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12013276160936975, dt = 0.0003640909518111677
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 332.76 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (62.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003633091377680151                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3388e+05 | 452096 |      1 | 4.841e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7075162404252198 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12049685256118092, dt = 0.0003633091377680151
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 350.45 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036261450339025844                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3339e+05 | 452096 |      1 | 4.844e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7003031169576137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12086016169894893, dt = 0.00036261450339025844
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.5%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 323.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036199578576439576                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3114e+05 | 452096 |      1 | 4.855e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6886499237847383 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12122277620233919, dt = 0.0002478120329549305
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 323.48 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036161462671795077                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2669e+05 | 452096 |      1 | 4.879e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.828641911878776 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 809.5930100090001 (s)                                    [Godunov][rank=0]
snapshot 59 time 0.12147058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.12147058823529412, dt = 0.00036161462671795077
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.87 us    (2.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.98 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036110233877360615                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3682e+05 | 452096 |      1 | 4.826e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.697564768349287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12183220286201207, dt = 0.00036110233877360615
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 323.64 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036064320271736737                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3246e+05 | 452096 |      1 | 4.848e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6812300726088183 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12219330520078568, dt = 0.00036064320271736737
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.4%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 354.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003602308077076385                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4659e+05 | 452096 |      1 | 4.776e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7184022242837096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12255394840350305, dt = 0.0003602308077076385
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 342.36 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003598596131399244                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2822e+05 | 452096 |      1 | 4.871e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6625896694654356 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12291417921121069, dt = 0.0003598596131399244
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 394.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003595248174501744                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4473e+05 | 452096 |      1 | 4.785e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.707139794668281 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1232740388243506, dt = 0.00025537294035528346
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 385.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (62.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003593084700314218                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2886e+05 | 452096 |      1 | 4.867e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8888484832586052 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 814.3933069410001 (s)                                    [Godunov][rank=0]
snapshot 60 time 0.12352941176470589
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.12352941176470589, dt = 0.0003593084700314218
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.52 us    (2.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 373.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003590263748505021                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4262e+05 | 452096 |      1 | 4.796e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.696956847410241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1238887202347373, dt = 0.0003590263748505021
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 371.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003587706029035127                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1023e+05 | 452096 |      1 | 4.967e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.602245618618287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1242477466095878, dt = 0.0003587706029035127
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 374.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003585382729956606                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3715e+05 | 452096 |      1 | 4.824e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.677293592357601 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12460651721249132, dt = 0.0003585382729956606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 340.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (62.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035832686227100147                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8899e+05 | 452096 |      1 | 5.085e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5380841040888065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12496505548548698, dt = 0.00035832686227100147
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 366.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581341572442499                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3226e+05 | 452096 |      1 | 4.849e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.660034590261978 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12532338234775797, dt = 0.0002648529463596949
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 352.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1552

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.000358003303931993                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8819e+05 | 394752 |      1 | 5.008e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.903762703003445 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 819.255367824 (s)                                        [Godunov][rank=0]
snapshot 61 time 0.12558823529411767
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.12558823529411767, dt = 0.000358003303931993
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.57 us    (2.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 397.48 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578385604730895                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0838e+05 | 394752 |      1 | 4.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9657478661958008 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12594623859804965, dt = 0.0003578385604730895
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 344.35 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035768773508676406                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2216e+05 | 394752 |      1 | 4.281e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0093538909563815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12630407715852274, dt = 0.00035768773508676406
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 401.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575495733460237                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9858e+05 | 394752 |      1 | 4.393e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9311630951143246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1266617648936095, dt = 0.0003575495733460237
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 378.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357423691566714                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2499e+05 | 394752 |      1 | 4.268e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0161285463759473 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12701931446695552, dt = 0.000357423691566714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 323.19 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573088879513878                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5096e+05 | 394752 |      1 | 4.639e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7737768484663134 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12737673815852224, dt = 0.0002703206650071788
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 351.42 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035722920132782895                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2210e+05 | 394752 |      1 | 4.802e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.026666757298605 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 823.6308592510001 (s)                                    [Godunov][rank=0]
snapshot 62 time 0.12764705882352942
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.12764705882352942, dt = 0.00035722920132782895
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.92 us    (2.4%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 383.48 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035713130619857534                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3499e+05 | 394752 |      1 | 4.222e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.046030875079421 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12800428802485725, dt = 0.00035713130619857534
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 359.99 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035704183197446415                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2284e+05 | 394752 |      1 | 4.797e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6799333395416984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12836141933105583, dt = 0.00035704183197446415
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.6%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 314.12 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356960005110451                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9808e+05 | 394752 |      1 | 4.395e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9242464055630077 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1287184611630303, dt = 0.000356960005110451
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 323.28 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568851356060929                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3235e+05 | 394752 |      1 | 4.234e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0351278972475284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12907542116814075, dt = 0.0003568851356060929
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 363.09 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568166072004514                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0668e+05 | 394752 |      1 | 4.354e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9509569481928137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12943230630374683, dt = 0.0002735760491943684
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 345.23 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567682691804436                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2706e+05 | 394752 |      1 | 4.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3129447801557697 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 827.989206512 (s)                                        [Godunov][rank=0]
snapshot 63 time 0.1297058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.1297058823529412, dt = 0.0003567682691804436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.48 us    (2.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 371.91 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567096132670462                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1896e+05 | 394752 |      1 | 4.820e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6645582950783795 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13006265062212163, dt = 0.0003567096132670462
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 354.74 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566559125064779                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7581e+05 | 394752 |      1 | 4.507e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.849057317976233 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1304193602353887, dt = 0.0003566559125064779
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 356.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566067597158532                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8683e+05 | 394752 |      1 | 4.451e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.884474285347972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13077601614789516, dt = 0.0003566067597158532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 323.01 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356561789172594                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5615e+05 | 394752 |      1 | 4.611e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7842989151546154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13113262290761102, dt = 0.000356561789172594
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 352.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565206720354876                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3250e+05 | 394752 |      1 | 4.742e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.707068854048611 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1314891846967836, dt = 0.00027552118556933847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 320.63 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035649150200649097                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2280e+05 | 394752 |      1 | 4.278e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3186798975707084 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 832.467835602 (s)                                        [Godunov][rank=0]
snapshot 64 time 0.13176470588235295
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.13176470588235295, dt = 0.00035649150200649097
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.20 us    (2.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 362.09 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564563199709082                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8461e+05 | 394752 |      1 | 4.462e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.875938774369526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13212119738435943, dt = 0.0003564563199709082
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.4%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 356.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035642388383699505                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2694e+05 | 394752 |      1 | 4.259e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.013271664329333 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13247765370433034, dt = 0.00035642388383699505
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 317.95 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563940027123942                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8366e+05 | 394752 |      1 | 4.467e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.872312985718095 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13283407758816734, dt = 0.0003563940027123942
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 345.46 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035636650383195564                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6313e+05 | 394752 |      1 | 4.574e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8053265450316376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13319047159087974, dt = 0.00035636650383195564
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 355.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035634123071440356                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4116e+05 | 394752 |      1 | 4.693e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.733724544573189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13354683809471168, dt = 0.0002766913170530183
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.5%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 332.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035632312005508233                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9522e+05 | 394752 |      1 | 4.410e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.258924789653628 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 836.8571650480001 (s)                                    [Godunov][rank=0]
snapshot 65 time 0.1338235294117647
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.1338235294117647, dt = 0.00035632312005508233
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.71 us    (2.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 372.90 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9152

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035630145532280783                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8765e+05 | 394752 |      1 | 4.447e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8844583989414936 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13417985253181977, dt = 0.00035630145532280783
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 330.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9152

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562816545104146                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5672e+05 | 394752 |      1 | 4.608e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.783784313742236 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13453615398714258, dt = 0.0003562816545104146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 326.70 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9152

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562636093980996                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0975e+05 | 394752 |      1 | 4.339e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9559395846942524 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13489243564165299, dt = 0.0003562636093980996
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 349.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035624722174772984                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0076e+05 | 394752 |      1 | 4.382e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.926574731949135 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1352486992510511, dt = 0.00035624722174772984
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 313.15 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003562324023750635                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2408e+05 | 394752 |      1 | 4.272e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0021920041876875 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13560494647279883, dt = 0.00027740646837765004
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 372.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035622193401574126                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6094e+05 | 394752 |      1 | 4.585e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.178047488200375 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 841.244108567 (s)                                        [Godunov][rank=0]
snapshot 66 time 0.13588235294117648
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.13588235294117648, dt = 0.00035622193401574126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.89 us    (2.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 370.42 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (63.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356209690951335                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1888e+05 | 394752 |      1 | 4.296e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.985086331021343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13623857487519223, dt = 0.000356209690951335
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 341.93 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003561987859066059                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3453e+05 | 394752 |      1 | 4.224e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.035813515282321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13659478456614357, dt = 0.0003561987859066059
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.6%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 327.64 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035618915061947086                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2626e+05 | 394752 |      1 | 4.778e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6840320901581434 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1369509833520502, dt = 0.00035618915061947086
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.6%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 312.98 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10176

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035618072542632583                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2201e+05 | 394752 |      1 | 4.802e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.670161712211214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13730717250266966, dt = 0.00035618072542632583
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.4%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 334.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1552

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  42176              [AMR Grid][rank=0]
Info: cfl dt = 0.0003649397252103187                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7525e+05 | 337408 |      1 | 4.352e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.94619768488499 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13766335322809597, dt = 0.00027782324249225887
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 312.32 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6080

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  528

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Will refine      1024    blocks


Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  47552              [AMR Grid][rank=0]
Info: cfl dt = 0.0003642859305085894                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2784e+05 | 380416 |      1 | 4.100e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4394031849248967 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 845.6060796180001 (s)                                    [Godunov][rank=0]
snapshot 67 time 0.13794117647058823
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
analysis done
amr::Godunov: t = 0.13794117647058823, dt = 0.0003642859305085894
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.58 us    (2.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 366.15 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (71.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003635074663381859                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4677e+05 | 380416 |      1 | 4.493e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.919115141559051 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1383054624010968, dt = 0.0003635074663381859
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 350.09 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (72.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000362816204316529                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1450e+05 | 380416 |      1 | 4.160e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1458608544548214 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.138668969867435, dt = 0.000362816204316529
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 329.58 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1280    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003622008042339829                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0534e+06 | 452096 |      1 | 4.292e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.043228956617192 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1390317860717515, dt = 0.0003622008042339829
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.4%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 327.73 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036165159722923015                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2408e+05 | 452096 |      1 | 4.892e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6651949925913283 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1393939868759855, dt = 0.00036165159722923015
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.4%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 349.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (62.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003611603074504766                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1759e+05 | 452096 |      1 | 4.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6424770878967334 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13975563847321473, dt = 0.00024436152678528056
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 316.92 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003608599264952791                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3421e+05 | 452096 |      1 | 4.839e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8178182214730485 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 850.1879787050001 (s)                                    [Godunov][rank=0]
snapshot 68 time 0.14
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.14, dt = 0.0003608599264952791
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.71 us    (2.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 344.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036044996452246026                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3269e+05 | 452096 |      1 | 4.847e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.680068484923996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403608599264953, dt = 0.00036044996452246026
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 325.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036008106473980184                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2901e+05 | 452096 |      1 | 4.866e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.666463041577571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14072130989101775, dt = 0.00036008106473980184
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.6%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 326.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035974841790482393                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2982e+05 | 452096 |      1 | 4.862e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6660683151398543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14108139095575756, dt = 0.00035974841790482393
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 347.36 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035944784952806003                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1756e+05 | 452096 |      1 | 4.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6284729055621763 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14144113937366237, dt = 0.00035944784952806003
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1.21 us    (0.3%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 378.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003591757274086368                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2507e+05 | 452096 |      1 | 4.887e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6477713662756446 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14180058722319044, dt = 0.0002582363062213211
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 336.49 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035899712855511334                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2285e+05 | 452096 |      1 | 4.899e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8976580147735558 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 855.031521468 (s)                                        [Godunov][rank=0]
snapshot 69 time 0.14205882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.14205882352941177, dt = 0.00035899712855511334
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.81 us    (2.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 372.16 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035876659480433973                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9574e+05 | 452096 |      1 | 6.498e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.988888948237592 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14241782065796688, dt = 0.00035876659480433973
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 324.95 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (69.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035855681992269175                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8548e+05 | 452096 |      1 | 5.756e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.243965815975035 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1427765872527712, dt = 0.00035855681992269175
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 341.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003583656000891111                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1701e+05 | 452096 |      1 | 5.534e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3326792398062444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1431351440726939, dt = 0.0003583656000891111
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 372.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (69.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035819099946694685                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2324e+05 | 452096 |      1 | 4.897e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6345994673683024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14349350967278302, dt = 0.00035819099946694685
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 342.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580313145220774                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2376e+05 | 452096 |      1 | 4.894e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.634787181638118 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14385170067224995, dt = 0.0002659463865735956
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 322.83 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035792206490485785                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3172e+05 | 452096 |      1 | 4.852e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.973109666268566 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 860.199778192 (s)                                        [Godunov][rank=0]
snapshot 70 time 0.14411764705882354
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.14411764705882354, dt = 0.00035792206490485785
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.13 us   (2.7%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 354.33 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577848317467859                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3843e+05 | 452096 |      1 | 4.818e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6746121139907433 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14447556912372841, dt = 0.0003577848317467859
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 342.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576588083402202                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3470e+05 | 452096 |      1 | 4.837e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6629747639972825 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1448333539554752, dt = 0.0003576588083402202
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 359.38 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575429216519453                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0631e+05 | 452096 |      1 | 4.988e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5811820748642735 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1451910127638154, dt = 0.0003575429216519453
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 348.32 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035743621979060817                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3286e+05 | 452096 |      1 | 4.846e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.655918456879389 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14554855568546735, dt = 0.00035743621979060817
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 314.65 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035733786841785715                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2562e+05 | 452096 |      1 | 4.884e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6345186288168696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14590599190525796, dt = 0.000270478682977332
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 339.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5312

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572693480067299                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6333e+05 | 452096 |      1 | 5.237e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8594349751077794 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 865.118822732 (s)                                        [Godunov][rank=0]
snapshot 71 time 0.1461764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.1461764705882353, dt = 0.0003572693480067299
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.64 us    (2.2%)
   patch tree reduce : 1.46 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 409.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000357185010470381                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0649e+05 | 452096 |      1 | 4.987e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5788751345810335 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14653373993624202, dt = 0.000357185010470381
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.66 us   (3.5%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 361.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (76.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035710768321612686                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1959e+05 | 452096 |      1 | 4.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6155269716432237 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1468909249467124, dt = 0.00035710768321612686
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 354.50 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035703674379966056                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3498e+05 | 452096 |      1 | 4.835e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6587276184405018 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14724803262992853, dt = 0.00035703674379966056
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 314.72 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035697163511268156                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4166e+05 | 452096 |      1 | 5.372e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3928725637202315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1476050693737282, dt = 0.00035697163511268156
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 334.95 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569118578044465                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2812e+05 | 452096 |      1 | 4.871e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6381993175193448 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14796204100884086, dt = 0.0002732531088062151
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.6%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 340.05 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035686962413464653                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4401e+05 | 452096 |      1 | 4.789e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0540542021932082 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 870.025807858 (s)                                        [Godunov][rank=0]
snapshot 72 time 0.14823529411764708
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.14823529411764708, dt = 0.00035686962413464653
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.40 us    (2.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 357.11 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035681817774967247                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3058e+05 | 452096 |      1 | 4.858e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6444591169080867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14859216374178172, dt = 0.00035681817774967247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 368.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567709321679983                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3998e+05 | 452096 |      1 | 4.810e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.670789040665494 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1489489819195314, dt = 0.0003567709321679983
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 345.48 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035672755229430094                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1884e+05 | 452096 |      1 | 4.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6103739756329714 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1493057528516994, dt = 0.00035672755229430094
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 352.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566877373354419                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1999e+05 | 452096 |      1 | 4.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.613326934012536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496624804039937, dt = 0.0003566877373354419
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 309.62 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566512190132628                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2395e+05 | 452096 |      1 | 4.893e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6242811729251017 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15001916814132912, dt = 0.00027494950572970467
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 347.46 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035662529083517035                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4027e+05 | 452096 |      1 | 4.808e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0586314323476214 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 874.866372164 (s)                                        [Godunov][rank=0]
snapshot 73 time 0.15029411764705883
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.15029411764705883, dt = 0.00035662529083517035
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.67 us    (2.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 374.15 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565940166660032                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3293e+05 | 452096 |      1 | 4.846e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6493015787769503 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150650742937894, dt = 0.0003565940166660032
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 326.81 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565653011599488                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1559e+05 | 452096 |      1 | 4.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5998281730472925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15100733695455998, dt = 0.0003565653011599488
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 346.98 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035653879462691927                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3587e+05 | 452096 |      1 | 4.831e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6572169955371683 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15136390225571994, dt = 0.00035653879462691927
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 348.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9408

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035651434791683455                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3503e+05 | 452096 |      1 | 4.835e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.654623335710734 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15172044105034685, dt = 0.00035651434791683455
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 395.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564918247187415                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2232e+05 | 452096 |      1 | 4.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6183702899139703 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15207695539826369, dt = 0.00027598577820692194
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 312.96 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564756894577727                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3354e+05 | 452096 |      1 | 4.843e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0515875974290663 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 879.7243385380001 (s)                                    [Godunov][rank=0]
snapshot 74 time 0.1523529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.1523529411764706, dt = 0.0003564756894577727
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.2%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 406.85 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564562747546343                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2835e+05 | 452096 |      1 | 4.870e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.635187980666573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15270941686592837, dt = 0.0003564562747546343
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 373.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564384639230941                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3908e+05 | 452096 |      1 | 4.814e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6655106916514013 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.153065873140683, dt = 0.0003564384639230941
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.74 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564221598045888                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3375e+05 | 452096 |      1 | 4.842e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6502375579077455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1534223116046061, dt = 0.0003564221598045888
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 353.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564072735869054                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3530e+05 | 452096 |      1 | 4.834e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6545221676203887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15377873376441067, dt = 0.0003564072735869054
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 341.08 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035639372410204996                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8766e+05 | 452096 |      1 | 5.093e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.519207099189123 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15413514103799758, dt = 0.0002766236678847789
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 354.74 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035638411571722563                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3519e+05 | 452096 |      1 | 4.834e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0599755878224113 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 884.568988714 (s)                                        [Godunov][rank=0]
snapshot 75 time 0.15441176470588236
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.15441176470588236, dt = 0.00035638411571722563
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.42 us    (2.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 378.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035637275922174025                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2928e+05 | 452096 |      1 | 4.865e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6371703995820566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1547681488215996, dt = 0.00035637275922174025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 343.95 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8384

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003563625492174516                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2271e+05 | 452096 |      1 | 5.495e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3346530486279633 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15512452158082132, dt = 0.0003563625492174516
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 354.30 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12480

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1296

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.0003650405779144683                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9507e+05 | 394752 |      1 | 4.965e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.583894015695047 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15548088413003877, dt = 0.0003650405779144683
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.1%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.59 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.2%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4288

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  272

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Will refine      1344    blocks


Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036418669586825696                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 1.0609e+06 | 470016 |      1 | 4.430e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9661407740277204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15584592470795325, dt = 0.00036418669586825696
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 353.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11648

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036343055028055353                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4271e+05 | 470016 |      1 | 6.328e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0717198976205777 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15621011140382152, dt = 0.00026047683147262246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 331.83 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11648

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629458420061739                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7466e+05 | 470016 |      1 | 5.374e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.745007429486452 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 889.627694258 (s)                                        [Godunov][rank=0]
snapshot 76 time 0.15647058823529414
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.15647058823529414, dt = 0.0003629458420061739
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.88 us    (2.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 361.40 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11648

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036232795059464235                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8513e+05 | 470016 |      1 | 5.310e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.460577237940006 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1568335340773003, dt = 0.00036232795059464235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 354.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11648

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036177712579221294                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1632e+05 | 470016 |      1 | 5.129e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.54295890226825 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15719586202789496, dt = 0.00036177712579221294
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 336.16 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (72.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11648

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000361284960830944                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2290e+05 | 470016 |      1 | 5.093e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5573285012329823 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15755763915368717, dt = 0.000361284960830944
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 371.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11648

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003608442289573146                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3132e+05 | 470016 |      1 | 5.047e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.577157475858742 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1579189241145181, dt = 0.0003608442289573146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 370.42 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 23.90 us   (5.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036044869713986605                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2485e+05 | 470016 |      1 | 5.082e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5561058258713465 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15827976834347543, dt = 0.000249643421230461
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 363.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003602005297947261                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2884e+05 | 470016 |      1 | 5.060e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7760367009624574 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 894.6799836680001 (s)                                    [Godunov][rank=0]
snapshot 77 time 0.1585294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.1585294117647059, dt = 0.0003602005297947261
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.37 us    (2.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 365.60 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003598693531901037                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0198e+05 | 470016 |      1 | 5.861e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.212567902050719 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1588896122945006, dt = 0.0003598693531901037
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 363.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003595704706022362                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3313e+05 | 470016 |      1 | 5.642e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2963919332858262 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1592494816476907, dt = 0.0003595704706022362
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 318.74 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035930018707018725                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2698e+05 | 470016 |      1 | 5.070e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.552948687390619 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15960905211829293, dt = 0.00035930018707018725
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 318.51 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035905529670338126                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3183e+05 | 470016 |      1 | 5.044e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5643978411429997 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15996835230536313, dt = 0.00035905529670338126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 368.90 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035883300418245486                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1908e+05 | 470016 |      1 | 5.114e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5275732820688317 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1603274076020665, dt = 0.00026082769205115763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.3%)
   LB compute        : 393.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003586851845332235                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3257e+05 | 470016 |      1 | 5.040e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8630591240159458 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 899.840790777 (s)                                        [Godunov][rank=0]
snapshot 78 time 0.16058823529411767
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.16058823529411767, dt = 0.0003586851845332235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.04 us   (2.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 367.00 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584962197671069                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4188e+05 | 470016 |      1 | 5.583e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.312886596592946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1609469204786509, dt = 0.0003584962197671069
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 339.36 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003583238712195091                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9510e+05 | 470016 |      1 | 5.251e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.457805885097873 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.161305416698418, dt = 0.0003583238712195091
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 334.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (63.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035816641432414356                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2855e+05 | 470016 |      1 | 5.062e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.548429044112448 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1616637405696375, dt = 0.00035816641432414356
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 345.06 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580223280445673                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2526e+05 | 470016 |      1 | 5.080e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.53826564951262 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16202190698396166, dt = 0.0003580223280445673
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 359.26 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578902686785417                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3068e+05 | 470016 |      1 | 5.050e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5521030813004946 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16237992931200623, dt = 0.00026712951152318976
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.6%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 338.89 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577993085001448                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2439e+05 | 470016 |      1 | 5.085e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8913368955767929 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 904.9374589600001 (s)                                    [Godunov][rank=0]
snapshot 79 time 0.16264705882352942
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.16264705882352942, dt = 0.0003577993085001448
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.59 us    (2.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 358.94 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003576854360995185                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0140e+05 | 470016 |      1 | 5.214e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4702915844181077 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16300485813202956, dt = 0.0003576854360995185
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 341.72 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575806448724974                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6687e+05 | 470016 |      1 | 5.422e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3749032471980134 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16336254356812907, dt = 0.0003575806448724974
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 317.84 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574840777970378                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4855e+05 | 470016 |      1 | 5.539e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3240334902315203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16372012421300156, dt = 0.0003574840777970378
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 340.29 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (70.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573949721620774                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2685e+05 | 470016 |      1 | 5.071e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.537791353606125 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1640776082907986, dt = 0.0003573949721620774
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 364.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035731264814888535                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6828e+05 | 470016 |      1 | 5.413e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3768317240566224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16443500326296068, dt = 0.0002708790899805247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035725463681388975                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2249e+05 | 470016 |      1 | 5.095e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.913938078055579 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 910.095180054 (s)                                        [Godunov][rank=0]
snapshot 80 time 0.1647058823529412
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.1647058823529412, dt = 0.00035725463681388975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.06 us   (2.5%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 383.60 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035718278392328045                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3045e+05 | 470016 |      1 | 5.052e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5460057375071448 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16506313698975508, dt = 0.00035718278392328045
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 354.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571162010310471                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1625e+05 | 470016 |      1 | 5.130e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.506664417808787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16542031977367835, dt = 0.0003571162010310471
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.5%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 336.89 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035705444747837704                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2421e+05 | 470016 |      1 | 5.086e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.527957762784802 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1657774359747094, dt = 0.00035705444747837704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 362.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569971727909844                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8542e+05 | 470016 |      1 | 5.308e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.421449378418208 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16613449042218778, dt = 0.0003569971727909844
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 415.56 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (72.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035694427923975094                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2190e+05 | 470016 |      1 | 5.098e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.520807782593835 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16649148759497875, dt = 0.0002732182873741995
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.5%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 346.08 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (74.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035690669376241307                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2124e+05 | 470016 |      1 | 5.102e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.927836539598349 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 915.159826388 (s)                                        [Godunov][rank=0]
snapshot 81 time 0.16676470588235295
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.16676470588235295, dt = 0.00035690669376241307
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.69 us   (2.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 383.48 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568606613162144                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1030e+05 | 470016 |      1 | 5.163e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.488451844164943 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16712161257611538, dt = 0.0003568606613162144
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 388.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568180940196606                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2447e+05 | 470016 |      1 | 5.084e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.526862981525669 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1674784732374316, dt = 0.0003568180940196606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 354.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356778718214528                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3488e+05 | 470016 |      1 | 5.028e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5550049231609187 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16783529133145125, dt = 0.000356778718214528
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 319.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567422858910965                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1228e+05 | 470016 |      1 | 5.152e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.492975434408851 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16819207004966577, dt = 0.0003567422858910965
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 335.14 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567085719749891                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2142e+05 | 470016 |      1 | 5.101e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5176812645085134 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16854881233555688, dt = 0.0002747170762078255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.5%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 324.71 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035668443225308913                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1776e+05 | 470016 |      1 | 5.121e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9311039014636884 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 920.391497177 (s)                                        [Godunov][rank=0]
snapshot 82 time 0.1688235294117647
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.1688235294117647, dt = 0.00035668443225308913
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.24 us    (2.2%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 399.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035665503421014935                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0202e+05 | 470016 |      1 | 5.211e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4642740068332274 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1691802138440178, dt = 0.00035665503421014935
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 342.22 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035662783240945385                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2348e+05 | 470016 |      1 | 5.090e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.522698634139766 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16953686887822794, dt = 0.00035662783240945385
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.6%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 311.69 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035660266888926003                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2966e+05 | 470016 |      1 | 5.056e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.539391239252352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1698934967106374, dt = 0.00035660266888926003
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 325.57 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035657938402332653                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2562e+05 | 470016 |      1 | 5.078e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5281823291877075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17025009937952665, dt = 0.00035657938402332653
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 389.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (74.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035655769259100285                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2200e+05 | 470016 |      1 | 5.098e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.518125229459225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17060667876354998, dt = 0.00027567417762650037
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 401.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565419976270847                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0838e+05 | 470016 |      1 | 5.174e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9180131652311612 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 925.448044523 (s)                                        [Godunov][rank=0]
snapshot 83 time 0.17088235294117649
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.17088235294117649, dt = 0.0003565419976270847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 369.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565228769558284                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2681e+05 | 470016 |      1 | 5.071e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.530999866724075 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17123889493880357, dt = 0.0003565228769558284
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 362.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (72.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565050804303123                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3005e+05 | 470016 |      1 | 5.054e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.53970044566663 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1715954178157594, dt = 0.0003565050804303123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 373.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003564885133418267                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2739e+05 | 470016 |      1 | 5.068e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5323049395347494 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1719519228961897, dt = 0.0003564885133418267
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 395.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035647308830242126                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3091e+05 | 470016 |      1 | 5.049e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.541809998216231 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17230841140953154, dt = 0.00035647308830242126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 389.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (72.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356458727814642                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2549e+05 | 470016 |      1 | 5.079e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.526893004138994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17266488449783396, dt = 0.00027629197275427786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 356.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035644831143355113                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2345e+05 | 470016 |      1 | 5.090e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.954203654828514 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 930.4859967420001 (s)                                    [Godunov][rank=0]
snapshot 84 time 0.17294117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.17294117647058824, dt = 0.00035644831143355113
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.17 us    (2.3%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 368.43 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14464

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1616

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  51584              [AMR Grid][rank=0]
Info: cfl dt = 0.0003651419697792084                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0339e+05 | 412672 |      1 | 5.137e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.498159376958771 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1732976247820218, dt = 0.0003651419697792084
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 51584.0 min = 51584.0 factor = 1
 - strategy "round robin" : max = 49004.8 min = 49004.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 51584
    max = 51584
    avg = 51584
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 347.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (65.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Will refine      1024    blocks


Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  56960              [AMR Grid][rank=0]
Info: cfl dt = 0.00036428703496766784                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.6952e+05 | 455680 |      1 | 4.700e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.796801522649625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.173662766751801, dt = 0.00036428703496766784
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 334.27 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036353009534451384                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7253e+05 | 455680 |      1 | 5.222e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.511126975609397 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17402705378676867, dt = 0.00036353009534451384
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 343.85 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036285793567832953                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2303e+05 | 455680 |      1 | 4.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6509344495304887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17439058388211318, dt = 0.00036285793567832953
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 367.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003622595620458889                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2303e+05 | 455680 |      1 | 4.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.646031259372343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1747534418177915, dt = 0.0002465581822085061
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 395.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036189320965216                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8871e+05 | 455680 |      1 | 5.127e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7311055608960533 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 935.478546875 (s)                                        [Godunov][rank=0]
snapshot 85 time 0.17500000000000002
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
analysis done
amr::Godunov: t = 0.17500000000000002, dt = 0.00036189320965216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.40 us    (2.5%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 357.11 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036139796529570877                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5550e+05 | 455680 |      1 | 5.326e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4459153055272504 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17536189320965218, dt = 0.00036139796529570877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 318.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003609543182243036                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5719e+05 | 455680 |      1 | 5.316e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.447395564761596 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1757232911749479, dt = 0.0003609543182243036
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.2%)
   patch tree reduce : 1.67 us    (0.3%)
   gen split merge   : 721.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 508.89 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003605560092834651                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3487e+05 | 455680 |      1 | 4.874e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.665913100642099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1760842454931722, dt = 0.0003605560092834651
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 369.43 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036019762948516043                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3025e+05 | 455680 |      1 | 4.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.649816655007776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17644480150245567, dt = 0.00036019762948516043
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.3%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 374.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035987449194900377                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3361e+05 | 455680 |      1 | 4.881e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6567319459631307 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17680499913194084, dt = 0.0002538243974709309
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 341.73 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (74.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003596671619088124                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4060e+05 | 455680 |      1 | 4.845e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8861647543349074 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 940.4350165750001 (s)                                    [Godunov][rank=0]
snapshot 86 time 0.17705882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
analysis done
amr::Godunov: t = 0.17705882352941177, dt = 0.0003596671619088124
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.45 us    (2.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 390.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035939483686571867                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1814e+05 | 455680 |      1 | 5.570e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3247179786787506 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17741849069132057, dt = 0.00035939483686571867
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 384.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (71.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035914793717260063                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3588e+05 | 455680 |      1 | 4.869e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6572561608440792 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1777778855281863, dt = 0.00035914793717260063
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1.39 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 384.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003589236614024589                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3812e+05 | 455680 |      1 | 4.857e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6617996587007062 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1781370334653589, dt = 0.0003589236614024589
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 376.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (72.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003587195683503803                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2471e+05 | 455680 |      1 | 4.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.622099529737617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17849595712676136, dt = 0.0003587195683503803
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 387.60 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358533516997394                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7269e+05 | 455680 |      1 | 5.222e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.473199619755996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17885467669511174, dt = 0.00026297036371181193
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 349.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584081882799078                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2722e+05 | 455680 |      1 | 4.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.926342109679762 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 945.4637599920001 (s)                                    [Godunov][rank=0]
snapshot 87 time 0.17911764705882355
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
analysis done
amr::Godunov: t = 0.17911764705882355, dt = 0.0003584081882799078
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 40.70 us   (9.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.3%)
   LB compute        : 367.30 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003582490059943762                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1283e+05 | 455680 |      1 | 4.992e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5847121905628234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17947605524710344, dt = 0.0003582490059943762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 355.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581032459683374                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8484e+05 | 455680 |      1 | 5.150e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.504346751939087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17983430425309782, dt = 0.0003581032459683374
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (0.6%)
   patch tree reduce : 1.65 us    (0.2%)
   gen split merge   : 1.16 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.1%)
   LB compute        : 836.86 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (72.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579695720837707                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3607e+05 | 455680 |      1 | 4.868e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6482562066709994 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18019240749906615, dt = 0.0003579695720837707
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1.51 us    (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 417.94 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578468020468122                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8815e+05 | 455680 |      1 | 5.782e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.228948860342091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18055037707114993, dt = 0.0003578468020468122
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 369.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035773388784683137                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3895e+05 | 455680 |      1 | 4.853e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6544905798772622 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18090822387319674, dt = 0.0002682467150385559
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 360.67 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035765550775255627                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7720e+05 | 455680 |      1 | 5.195e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8589765759110606 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 950.4824051740001 (s)                                    [Godunov][rank=0]
snapshot 88 time 0.1811764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
analysis done
amr::Godunov: t = 0.1811764705882353, dt = 0.00035765550775255627
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.26 us   (2.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 384.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035755762737939414                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0666e+05 | 455680 |      1 | 5.026e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5618436134840485 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18153412609598785, dt = 0.00035755762737939414
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.5%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 322.87 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  5504

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574672875513213                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6033e+05 | 455680 |      1 | 5.297e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.430270921539307 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18189168372336725, dt = 0.0003574672875513213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.6%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 333.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035738381057763975                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1650e+05 | 455680 |      1 | 4.972e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.588270078017029 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18224915101091857, dt = 0.00035738381057763975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 392.49 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035730659080085973                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4028e+05 | 455680 |      1 | 4.846e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6548299943395417 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18260653482149622, dt = 0.00035730659080085973
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 349.69 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035723508602233565                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4415e+05 | 455680 |      1 | 4.826e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.665172779561585 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18296384141229707, dt = 0.000271452705350006
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.4%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.3%)
   LB compute        : 320.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571844803581959                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4109e+05 | 455680 |      1 | 5.418e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8037579745060073 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 955.4672765030001 (s)                                    [Godunov][rank=0]
snapshot 89 time 0.18323529411764708
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
analysis done
amr::Godunov: t = 0.18323529411764708, dt = 0.0003571844803581959
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.62 us    (2.1%)
   patch tree reduce : 1.41 us    (0.3%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 428.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571218651362737                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2172e+05 | 455680 |      1 | 4.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6009717275902213 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1835924785980053, dt = 0.0003571218651362737
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 342.53 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035706374076807765                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5813e+05 | 455680 |      1 | 5.310e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4211015547971497 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18394960046314157, dt = 0.00035706374076807765
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 378.06 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (71.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035700974418419797                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3513e+05 | 455680 |      1 | 4.873e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.637908673650562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18430666420390965, dt = 0.00035700974418419797
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 317.78 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (62.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035695966375850666                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3764e+05 | 455680 |      1 | 5.440e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3625562623972574 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18466367394809385, dt = 0.00035695966375850666
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.3%)
   LB compute        : 325.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035691334836295837                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3997e+05 | 455680 |      1 | 4.848e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6507898896002033 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18502063361185236, dt = 0.00027348403520646714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 397.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (66.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568803594310766                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4158e+05 | 455680 |      1 | 4.840e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.034386832349372 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 960.4354807550001 (s)                                    [Godunov][rank=0]
snapshot 90 time 0.18529411764705883
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
analysis done
amr::Godunov: t = 0.18529411764705883, dt = 0.0003568803594310766
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.64 us    (2.2%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 414.68 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035683996692522155                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3370e+05 | 455680 |      1 | 5.466e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.350593058212763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1856509980064899, dt = 0.00035683996692522155
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 315.67 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (69.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035680257625689195                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5828e+05 | 455680 |      1 | 5.309e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4196150323739785 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18600783797341514, dt = 0.00035680257625689195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 386.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (75.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567679580736471                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2894e+05 | 455680 |      1 | 4.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.61852833223368 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18636464054967203, dt = 0.0003567679580736471
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 339.45 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035673590384718563                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0570e+05 | 455680 |      1 | 5.031e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5527874316374497 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18672140850774568, dt = 0.00035673590384718563
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 344.46 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (71.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9600

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567062237068035                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4430e+05 | 455680 |      1 | 4.826e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6613473932945966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18707814441159287, dt = 0.0002747967648777383
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.50 us   (7.0%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 351.96 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (68.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356684954845134                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3159e+05 | 455680 |      1 | 4.891e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.022462530367517 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 965.4059801000001 (s)                                    [Godunov][rank=0]
snapshot 91 time 0.1873529411764706
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
analysis done
amr::Godunov: t = 0.1873529411764706, dt = 0.000356684954845134
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.44 us    (2.4%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 552.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 371.08 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566590570084775                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6964e+05 | 455680 |      1 | 5.240e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4505598934852 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18770962613131575, dt = 0.0003566590570084775
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 332.49 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035663509003698547                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3907e+05 | 455680 |      1 | 4.852e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.646010347915165 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18806628518832424, dt = 0.00035663509003698547
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 356.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (70.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566128821227835                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7908e+05 | 455680 |      1 | 5.184e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.476820012993629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18842292027836122, dt = 0.0003566128821227835
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 359.70 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (77.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565921893500573                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1281e+05 | 455680 |      1 | 4.992e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.571691613628135 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.188779533160484, dt = 0.0003565921893500573
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 310.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565729131277972                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3933e+05 | 455680 |      1 | 5.429e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.364546968362853 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18913612534983404, dt = 0.0002756393560483239
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.6%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 319.18 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035655896785193806                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9395e+05 | 455680 |      1 | 5.097e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.946695032455981 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 970.4222078040001 (s)                                    [Godunov][rank=0]
snapshot 92 time 0.18941176470588236
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  124
analysis done
amr::Godunov: t = 0.18941176470588236, dt = 0.00035655896785193806
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.87 us    (2.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 570.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.25 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (72.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565419852701496                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3027e+05 | 455680 |      1 | 4.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6204867103816603 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1897683236737343, dt = 0.0003565419852701496
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.6%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 369.74 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (73.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565261902292387                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6343e+05 | 455680 |      1 | 5.278e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4320801961191836 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19012486565900447, dt = 0.0003565261902292387
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 334.59 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (73.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8576

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035651151145974777                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5390e+05 | 455680 |      1 | 5.336e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4051498011831907 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1904813918492337, dt = 0.00035651151145974777
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 364.27 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (74.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12672

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  400

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035649788250687904                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4028e+05 | 455680 |      1 | 5.423e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3666831044258654 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19083790336069345, dt = 0.00035649788250687904
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 316.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (69.8%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  16768

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1360

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Will refine      1280    blocks


Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  58752              [AMR Grid][rank=0]
Info: cfl dt = 0.00036503843339807425                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6449e+05 | 470016 |      1 | 5.437e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.360515549930177 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19119440124320033, dt = 0.0002761869920938076
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.5%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 315.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14464

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  592

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003643988903917916                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9286e+05 | 470016 |      1 | 5.264e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8887510426336338 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 975.5107547440001 (s)                                    [Godunov][rank=0]
snapshot 93 time 0.19147058823529414
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.19147058823529414, dt = 0.0003643988903917916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.51 us    (2.5%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 602.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 357.79 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036363241415620636                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3799e+05 | 470016 |      1 | 5.011e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6179702235163536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19183498712568595, dt = 0.00036363241415620636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000362952288069174                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3897e+05 | 470016 |      1 | 5.006e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.615194373177655 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19219861953984216, dt = 0.000362952288069174
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 350.63 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (74.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003623473234524282                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4047e+05 | 470016 |      1 | 5.592e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3364839290904973 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19256157182791134, dt = 0.0003623473234524282
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 325.76 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (70.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003618079644105955                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3217e+05 | 470016 |      1 | 5.042e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5870765494957255 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19292391915136375, dt = 0.0003618079644105955
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 28.46 us   (7.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 343.77 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003613260186657401                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3787e+05 | 470016 |      1 | 5.012e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.599028470027543 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19328572711577435, dt = 0.0002436846489315414
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 334.24 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (61.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036103264122042675                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5390e+05 | 470016 |      1 | 5.504e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5937609845663014 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 980.780827002 (s)                                        [Godunov][rank=0]
snapshot 94 time 0.1935294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.1935294117647059, dt = 0.00036103264122042675
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.34 us    (2.5%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 354.09 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036063121175524424                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0490e+05 | 470016 |      1 | 5.194e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5022856626577736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19389044440592632, dt = 0.00036063121175524424
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 337.78 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003602704785537412                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8761e+05 | 470016 |      1 | 5.295e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.45175150368977 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19425107561768157, dt = 0.0003602704785537412
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.7%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 304.06 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003599456550338432                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4487e+05 | 470016 |      1 | 5.563e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.331348026766762 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19461134609623532, dt = 0.0003599456550338432
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 353.39 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (73.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003596525804674648                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4666e+05 | 470016 |      1 | 5.551e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3341787815043666 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19497129175126915, dt = 0.0003596525804674648
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 313.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (20.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035938763164482024                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4456e+05 | 470016 |      1 | 5.565e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.326496384891937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19533094433173662, dt = 0.0002572909623810571
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.3%)
   LB compute        : 307.52 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003592147236326228                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2324e+05 | 470016 |      1 | 5.091e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8193981554122107 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 985.999178235 (s)                                        [Godunov][rank=0]
snapshot 95 time 0.19558823529411767
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.19558823529411767, dt = 0.0003592147236326228
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.25 us   (2.6%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 461.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 366.55 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003589907589774186                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4375e+05 | 470016 |      1 | 5.571e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.321453732351693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1959474500177503, dt = 0.0003589907589774186
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 351.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (71.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15488

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003587872536106563                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3234e+05 | 470016 |      1 | 5.041e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.563570508182611 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1963064407767277, dt = 0.0003587872536106563
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 343.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035860200275160886                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3394e+05 | 470016 |      1 | 5.033e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5665158583647383 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19666522803033837, dt = 0.00035860200275160886
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 347.68 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584330680658588                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9464e+05 | 470016 |      1 | 5.254e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.457262798362687 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19702383003308999, dt = 0.0003584330680658588
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 311.89 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (62.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035827874264192735                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3548e+05 | 470016 |      1 | 5.024e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5682269686117687 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19738226310115584, dt = 0.0002647957223735897
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.6%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 360.20 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (74.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11392

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  848

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358173791640535                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3314e+05 | 470016 |      1 | 5.037e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8925545029379718 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 991.0988719080001 (s)                                    [Godunov][rank=0]
snapshot 96 time 0.19764705882352943
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.19764705882352943, dt = 0.000358173791640535
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.46 us    (2.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 347.47 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003580413289051634                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2955e+05 | 470016 |      1 | 5.666e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2757585485118885 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19800523261516997, dt = 0.0003580413289051634
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 327.22 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035791976362261333                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3443e+05 | 470016 |      1 | 5.030e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5625459753151887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19836327394407513, dt = 0.00035791976362261333
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.5%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 406.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (76.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035780801897958346                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3272e+05 | 470016 |      1 | 5.039e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.556984478985309 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19872119370769775, dt = 0.00035780801897958346
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 340.25 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577051397707826                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4730e+05 | 470016 |      1 | 5.547e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3220826992684507 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19907900172667733, dt = 0.0003577051397707826
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 314.96 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035761027740352535                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3768e+05 | 470016 |      1 | 5.013e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.569030133129811 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19943670686644813, dt = 0.0002691754864930507
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 347.88 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (62.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  11328

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575440107678825                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3645e+05 | 470016 |      1 | 5.019e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9306860270852197 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 996.224611543 (s)                                        [Godunov][rank=0]
snapshot 97 time 0.19970588235294118
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.19970588235294118, dt = 0.0003575440107678825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.73 us    (2.2%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 415.87 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035746139951376023                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9849e+05 | 470016 |      1 | 5.231e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.460539733882195 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20006342636370905, dt = 0.00035746139951376023
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 327.00 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (75.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573849223448223                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6221e+05 | 470016 |      1 | 5.451e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3606450513064594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2004208877632228, dt = 0.0003573849223448223
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.7%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 315.43 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (72.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573140274136102                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2781e+05 | 470016 |      1 | 5.066e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.539725290585936 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20077827268556764, dt = 0.0003573140274136102
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 338.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035724822102749915                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7264e+05 | 470016 |      1 | 5.386e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3882133304404576 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20113558671298123, dt = 0.00035724822102749915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 386.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (63.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035718706087187424                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2539e+05 | 470016 |      1 | 5.079e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5321347349577037 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20149283493400874, dt = 0.0002718709483442161
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 381.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571435415689574                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3091e+05 | 470016 |      1 | 5.049e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9384828803824945 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1001.3584424930001 (s)                                   [Godunov][rank=0]
snapshot 98 time 0.20176470588235296
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.20176470588235296, dt = 0.0003571435415689574
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.47 us    (2.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 378.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570896161465818                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3208e+05 | 470016 |      1 | 5.043e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.549680623689975 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20212184942392192, dt = 0.0003570896161465818
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 316.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035703935341317136                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3171e+05 | 470016 |      1 | 5.045e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.548284595321129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2024789390400685, dt = 0.00035703935341317136
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.8%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 341.35 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (71.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569924683390023                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3440e+05 | 470016 |      1 | 5.030e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.555271134735913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20283597839348166, dt = 0.0003569924683390023
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 388.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569487027497917                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1894e+05 | 470016 |      1 | 5.115e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5126617568595644 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20319297086182067, dt = 0.0003569487027497917
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 350.26 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035690782239059616                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3562e+05 | 470016 |      1 | 5.024e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5579794812864685 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20354991956457047, dt = 0.0002736098471942394
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.7%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 347.43 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568784003781185                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5488e+05 | 470016 |      1 | 5.498e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7915502777759007 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1006.4760193290001 (s)                                   [Godunov][rank=0]
snapshot 99 time 0.2038235294117647
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.2038235294117647, dt = 0.0003568784003781185
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.69 us    (2.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 373.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568421025401599                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4149e+05 | 470016 |      1 | 5.586e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.300151986116217 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20418040781214283, dt = 0.0003568421025401599
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (0.6%)
   patch tree reduce : 1.66 us    (0.2%)
   gen split merge   : 932.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.1%)
   LB compute        : 945.95 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (72.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568082989583686                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3412e+05 | 470016 |      1 | 5.635e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.27978559344753 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.204537249914683, dt = 0.0003568082989583686
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 361.70 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  15424

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  832

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567768329430694                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1098e+05 | 470016 |      1 | 5.159e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.489632400975772 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20489405821364137, dt = 0.0003567768329430694
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 315.10 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035674753305050936                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1787e+05 | 470016 |      1 | 5.121e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5082395880764663 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20525083504658445, dt = 0.00035674753305050936
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.5%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 366.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (73.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035672024256737974                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3657e+05 | 470016 |      1 | 5.618e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.285891186216914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20560758257963496, dt = 0.00027477036154152645
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 373.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (72.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035670057271305276                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2518e+05 | 470016 |      1 | 5.080e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9470871738441702 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1011.7198880990001 (s)                                   [Godunov][rank=0]
snapshot 100 time 0.2058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.2058823529411765, dt = 0.00035670057271305276
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.45 us    (2.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 370.16 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566764911939538                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3927e+05 | 470016 |      1 | 5.004e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5661576679835028 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20623905351388955, dt = 0.0003566764911939538
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 383.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (74.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566540504885584                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3348e+05 | 470016 |      1 | 5.035e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.550165423320295 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2065957300050835, dt = 0.0003566540504885584
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 354.32 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (62.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566331375876189                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4208e+05 | 470016 |      1 | 4.989e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.573501046737044 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20695238405557206, dt = 0.0003566331375876189
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 384.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (73.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035661363306978706                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3748e+05 | 470016 |      1 | 5.014e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5607780734923127 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2073090171931597, dt = 0.00035661363306978706
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.7%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 330.74 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (68.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565953739655662                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4439e+05 | 470016 |      1 | 4.977e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5795332025322875 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2076656308262295, dt = 0.00027554564435874895
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 342.45 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035658205689248756                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5867e+05 | 470016 |      1 | 5.474e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.812210608039969 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1016.8028535870001 (s)                                   [Godunov][rank=0]
snapshot 101 time 0.20794117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  126
analysis done
amr::Godunov: t = 0.20794117647058824, dt = 0.00035658205689248756
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.58 us    (2.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 372.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565656956800704                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4614e+05 | 470016 |      1 | 5.555e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3109614021131253 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20829775852748073, dt = 0.0003565656956800704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 335.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565503079818871                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3497e+05 | 470016 |      1 | 5.027e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5534438074727275 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2086543242231608, dt = 0.0003565503079818871
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 335.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  18496

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1600

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Will refine      1024    blocks


Info: process block count = 65920                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  58752              [AMR Grid][rank=0]
Info: cfl dt = 0.0003651410896943836                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8905e+05 | 470016 |      1 | 5.287e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4279321336351045 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20901087453114267, dt = 0.0003651410896943836
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 58752.0 min = 58752.0 factor = 1
 - strategy "round robin" : max = 55814.4 min = 55814.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 58752
    max = 58752
    avg = 58752
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 317.75 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  14400

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Info: process block count = 58752                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  56960              [AMR Grid][rank=0]
Info: cfl dt = 0.00036429765530161297                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8500e+05 | 455680 |      1 | 5.149e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5529870043699474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20937601562083705, dt = 0.00036429765530161297
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56960.0 min = 56960.0 factor = 1
 - strategy "round robin" : max = 54112.0 min = 54112.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56960
    max = 56960
    avg = 56960
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 359.27 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (65.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13632

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  64

Info: process block count = 56960                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  448 new block count =  56512               [AMR Grid][rank=0]
Info: cfl dt = 0.00036355071530664977                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9750e+05 | 452096 |      1 | 5.037e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.603525307852663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20974031327613865, dt = 0.0002596867238613687
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.5%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 362.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036307334352549646                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2467e+05 | 452096 |      1 | 4.889e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9120877283932645 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1021.907325503 (s)                                       [Godunov][rank=0]
snapshot 102 time 0.21000000000000002
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.21000000000000002, dt = 0.00036307334352549646
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.62 us    (2.3%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 400.35 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003624624494895382                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3324e+05 | 452096 |      1 | 4.844e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.698113810686129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21036307334352553, dt = 0.0003624624494895382
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 350.51 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003619176729462498                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3895e+05 | 452096 |      1 | 4.815e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7100586526635237 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21072553579301506, dt = 0.0003619176729462498
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 377.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (73.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036143073848042534                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2237e+05 | 452096 |      1 | 4.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.658196947078984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2110874534659613, dt = 0.00036143073848042534
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.6%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 385.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036099453388968296                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2882e+05 | 452096 |      1 | 5.455e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.385369996941784 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21144888420444172, dt = 0.00036099453388968296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 339.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (65.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036060292733187363                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0271e+05 | 452096 |      1 | 5.008e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5948886476863673 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2118098787383314, dt = 0.0002489447910803688
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.6%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 377.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (73.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036035792425600545                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0988e+05 | 452096 |      1 | 4.969e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.803673166008635 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1026.862516509 (s)                                       [Godunov][rank=0]
snapshot 103 time 0.21205882352941177
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.21205882352941177, dt = 0.00036035792425600545
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.75 us    (2.3%)
   patch tree reduce : 1.45 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 401.78 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036002977651974287                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3717e+05 | 452096 |      1 | 4.824e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.689204937834413 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21241918145366778, dt = 0.00036002977651974287
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.5%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 396.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035973354260876005                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.4102e+05 | 452096 |      1 | 4.804e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.69780538771719 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21277921123018753, dt = 0.00035973354260876005
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 329.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (67.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035946558708958756                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3573e+05 | 452096 |      1 | 4.831e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6804366514361107 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2131389447727963, dt = 0.00035946558708958756
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.6%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 355.92 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (75.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003592227391912333                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2963e+05 | 452096 |      1 | 4.863e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.660957843083118 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21349841035988587, dt = 0.0003592227391912333
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 314.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035900222868384554                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3207e+05 | 452096 |      1 | 4.850e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6661425482078416 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2138576330990771, dt = 0.00026001395974645236
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.6%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 343.71 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (73.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035885605836993086                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4189e+05 | 452096 |      1 | 5.370e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.743103917581884 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1031.750791935 (s)                                       [Godunov][rank=0]
snapshot 104 time 0.21411764705882355
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.21411764705882355, dt = 0.00035885605836993086
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.53 us    (2.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 350.66 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003586684330791404                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9212e+05 | 452096 |      1 | 5.068e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5492654661065846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2144765031171935, dt = 0.0003586684330791404
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 319.10 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003584972266265599                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4823e+05 | 452096 |      1 | 5.330e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4225853121963303 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21483517155027262, dt = 0.0003584972266265599
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 357.99 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035834073142195205                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3849e+05 | 452096 |      1 | 4.817e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6790924705938175 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2151936687768992, dt = 0.00035834073142195205
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 399.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581974416341913                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2911e+05 | 452096 |      1 | 4.866e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6511601710460084 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21555200950832115, dt = 0.0003581974416341913
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 400.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (70.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035806602706542654                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3530e+05 | 452096 |      1 | 4.834e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.66773774261535 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21591020694995533, dt = 0.00026626363827997324
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 366.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003579757802662788                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2439e+05 | 452096 |      1 | 4.891e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9599286176127877 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1036.67534645 (s)                                        [Godunov][rank=0]
snapshot 105 time 0.2161764705882353
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  122
analysis done
amr::Godunov: t = 0.2161764705882353, dt = 0.0003579757802662788
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.58 us    (2.4%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 369.36 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.45 us   (95.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035786228851136164                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3163e+05 | 452096 |      1 | 4.853e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.655624556717834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21653444636850158, dt = 0.00035786228851136164
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 364.42 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035775775798856086                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2169e+05 | 452096 |      1 | 4.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6264807450357677 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21689230865701295, dt = 0.00035775775798856086
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.5%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 1.02 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 403.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035766133932704563                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3244e+05 | 452096 |      1 | 4.849e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6563192911252003 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2172500664150015, dt = 0.00035766133932704563
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 350.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035757227628207584                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3731e+05 | 452096 |      1 | 4.823e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6694687028968547 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21760772775432854, dt = 0.00035757227628207584
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 56512.0 min = 56512.0 factor = 1
 - strategy "round robin" : max = 53686.4 min = 53686.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 56512
    max = 56512
    avg = 56512
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 396.90 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (73.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1280

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.00035748989441921296                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5690e+05 | 394752 |      1 | 5.215e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.468208730324183 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21796530003061063, dt = 0.000269994087036457
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.5%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 352.26 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (79.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  256

Derefinement 2:1 balance converge in      1      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  256

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1792 new block count =  47552              [AMR Grid][rank=0]
Info: cfl dt = 0.0003574319843576691                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8249e+05 | 380416 |      1 | 4.862e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9992827710762437 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1041.575519767 (s)                                       [Godunov][rank=0]
snapshot 106 time 0.21823529411764708
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
analysis done
amr::Godunov: t = 0.21823529411764708, dt = 0.0003574319843576691
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.04 us   (2.3%)
   patch tree reduce : 1.52 us    (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 420.00 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035735989453067264                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2073e+05 | 380416 |      1 | 4.132e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1143752094013744 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21859272610200475, dt = 0.00035735989453067264
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 363.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572929909417189                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0558e+05 | 380416 |      1 | 4.201e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0625124923033646 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21895008599653543, dt = 0.0003572929909417189
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.3%)
   LB compute        : 387.86 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (72.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572308360185619                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.3054e+05 | 380416 |      1 | 4.088e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1463104147429566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21930737898747715, dt = 0.0003572308360185619
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.3%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.3%)
   LB compute        : 399.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (67.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571730362428718                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1061e+05 | 380416 |      1 | 4.178e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0783854801976034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21966460982349573, dt = 0.0003571730362428718
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 366.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571192371024503                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1577e+05 | 380416 |      1 | 4.154e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0953311444892293 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22002178285973858, dt = 0.00027233478732024974
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.7%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 367.59 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (71.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035708084072649457                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1378e+05 | 380416 |      1 | 4.163e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3549825042185737 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1045.935032357 (s)                                       [Godunov][rank=0]
snapshot 107 time 0.22029411764705883
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
analysis done
amr::Godunov: t = 0.22029411764705883, dt = 0.00035708084072649457
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.2%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 632.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 395.91 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570333225023759                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1227e+05 | 380416 |      1 | 4.170e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0827102758644487 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22065119848778533, dt = 0.0003570333225023759
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 346.67 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569889947994762                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0885e+05 | 380416 |      1 | 4.186e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0707461987994518 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2210082318102877, dt = 0.0003569889947994762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 366.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035694761444257325                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9544e+05 | 380416 |      1 | 4.248e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0250689113043103 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22136522080508717, dt = 0.00035694761444257325
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 356.10 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356908960586125                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0974e+05 | 380416 |      1 | 4.698e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7352204277926866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22172216841952974, dt = 0.000356908960586125
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.5%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 351.12 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035687283233434494                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0991e+05 | 380416 |      1 | 4.181e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0732780579979626 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22207907738011587, dt = 0.0002738637963547452
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 385.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035684678890047567                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4056e+05 | 380416 |      1 | 4.526e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.178438394704496 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1050.2103851050001 (s)                                   [Godunov][rank=0]
snapshot 108 time 0.22235294117647061
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
analysis done
amr::Godunov: t = 0.22235294117647061, dt = 0.00035684678890047567
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.91 us    (2.3%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.02 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356814706344116                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1760e+05 | 380416 |      1 | 4.146e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0986844480588585 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22270978796537108, dt = 0.000356814706344116
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 369.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (71.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  7296

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035678483389423303                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0423e+05 | 380416 |      1 | 4.207e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.053277123413359 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2230666026717152, dt = 0.00035678483389423303
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 400.86 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035675701045261054                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1308e+05 | 380416 |      1 | 4.166e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0829019084639313 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22342338750560942, dt = 0.00035675701045261054
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 394.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (74.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567310886619108                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0168e+05 | 380416 |      1 | 4.219e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.04416736628299 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22378014451606204, dt = 0.0003567310886619108
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 388.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567069335567945                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1463e+05 | 380416 |      1 | 4.159e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0876556639635644 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22413687560472395, dt = 0.00027488910115841536
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 1.29 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 326.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035668950777022033                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5635e+05 | 380416 |      1 | 4.442e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.227672481348739 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1054.4173172 (s)                                         [Godunov][rank=0]
snapshot 109 time 0.22441176470588237
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
analysis done
amr::Godunov: t = 0.22441176470588237, dt = 0.00035668950777022033
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.81 us    (2.5%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 371.72 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (63.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566681797067276                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1655e+05 | 380416 |      1 | 4.151e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.093788482713869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22476845421365257, dt = 0.0003566681797067276
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.5%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 396.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (74.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035664829991149597                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1257e+05 | 380416 |      1 | 4.169e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.080157555301936 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2251251223933593, dt = 0.00035664829991149597
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 393.61 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566297703732438                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2095e+05 | 380416 |      1 | 4.131e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.108279386551471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2254817706932708, dt = 0.0003566297703732438
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 377.29 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (64.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035661244707659                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9024e+05 | 380416 |      1 | 4.273e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0044835143670308 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22583840046364403, dt = 0.00035661244707659
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 366.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565962002574987                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.2256e+05 | 380416 |      1 | 4.123e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1133986821475674 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2261950129107206, dt = 0.00027557532457353484
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 379.68 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  6272

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  64

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 47552                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003565843706569956                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9658e+05 | 380416 |      1 | 4.243e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.338151965498153 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1058.601129355 (s)                                       [Godunov][rank=0]
snapshot 110 time 0.22647058823529415
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  106
analysis done
amr::Godunov: t = 0.22647058823529415, dt = 0.0003565843706569956
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 47552.0 min = 47552.0 factor = 1
 - strategy "round robin" : max = 45174.4 min = 45174.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 47552
    max = 47552
    avg = 47552
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.85 us    (2.5%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 363.49 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.6%)
Refinement 2:1 balance converged in  2  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  10368

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1088

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Will refine      1280    blocks


Info: process block count = 56512                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  49344              [AMR Grid][rank=0]
Info: cfl dt = 0.0003652224705545252                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1820e+05 | 394752 |      1 | 4.299e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.985915360208677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22682717260595114, dt = 0.0003652224705545252
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 367.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12160

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  320

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036437383466397767                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0860e+05 | 394752 |      1 | 4.345e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.026278617719803 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22719239507650568, dt = 0.00036437383466397767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 374.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  13184

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036362227028759577                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0265e+05 | 394752 |      1 | 4.373e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.999477904622219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22755676891116966, dt = 0.00036362227028759577
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 348.23 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (68.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003629550036019443                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0966e+05 | 394752 |      1 | 4.340e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0165316601675225 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22792039118145727, dt = 0.0003629550036019443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 352.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036236115989197413                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.0573e+05 | 394752 |      1 | 4.358e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.997991732003745 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22828334618505922, dt = 0.0002460655796466815
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 383.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003619985480744621                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8619e+05 | 394752 |      1 | 4.454e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.988640326246331 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1062.899726955 (s)                                       [Godunov][rank=0]
snapshot 111 time 0.2285294117647059
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  108
analysis done
amr::Godunov: t = 0.2285294117647059, dt = 0.0003619985480744621
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.21 us   (2.2%)
   patch tree reduce : 1.62 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 442.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036150733270392984                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 9.1150e+05 | 394752 |      1 | 4.331e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0091426466750226 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22889141031278035, dt = 0.00036150733270392984
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 339.88 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (71.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  17280

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  576

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003610675527963242                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.9769e+05 | 394752 |      1 | 4.397e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.959530848272041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22925291764548428, dt = 0.0003610675527963242
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 49344.0 min = 49344.0 factor = 1
 - strategy "round robin" : max = 46876.8 min = 46876.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 49344
    max = 49344
    avg = 49344
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 351.01 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  21376

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1600

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  42176              [AMR Grid][rank=0]
Info: cfl dt = 0.00036067298846220573                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5953e+05 | 337408 |      1 | 4.442e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9260410587554264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2296139851982806, dt = 0.00036067298846220573
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 391.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00036031825889395075                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6462e+05 | 337408 |      1 | 3.902e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3272605958584682 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22997465818674281, dt = 0.00036031825889395075
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 352.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (73.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035999869686811344                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7251e+05 | 337408 |      1 | 3.867e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3543079756286214 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23033497644563677, dt = 0.0002532588484808751
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 378.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (69.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003597943850234485                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7281e+05 | 337408 |      1 | 3.866e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3584697515627386 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1067.119925742 (s)                                       [Godunov][rank=0]
snapshot 112 time 0.23058823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
analysis done
amr::Godunov: t = 0.23058823529411765, dt = 0.0003597943850234485
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.79 us   (2.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 431.13 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035952548727775886                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4807e+05 | 337408 |      1 | 4.510e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8717289167013886 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2309480296791411, dt = 0.00035952548727775886
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (0.8%)
   patch tree reduce : 1.54 us    (0.2%)
   gen split merge   : 992.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.1%)
   LB compute        : 725.84 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (63.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000359281970109126                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9242e+05 | 337408 |      1 | 4.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0397075232701085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23130755516641885, dt = 0.000359281970109126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.9%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 333.54 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035906102184972595                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7308e+05 | 337408 |      1 | 4.364e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9635259883643745 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23166683713652797, dt = 0.00035906102184972595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.7%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 353.89 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035886017922316183                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7311e+05 | 337408 |      1 | 3.864e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.344899036264313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2320258981583777, dt = 0.00035886017922316183
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 334.57 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035867728125783805                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6108e+05 | 337408 |      1 | 4.433e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.91408437297768 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23238475833760086, dt = 0.00026230048592856825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.6%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 314.22 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000358554556645958                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7745e+05 | 337408 |      1 | 3.845e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4556640423940785 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1071.17788129 (s)                                        [Godunov][rank=0]
snapshot 113 time 0.23264705882352943
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
analysis done
amr::Godunov: t = 0.23264705882352943, dt = 0.000358554556645958
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.56 us    (2.4%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 380.22 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003583982886683592                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8942e+05 | 337408 |      1 | 4.274e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.02000608917431 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2330056133801754, dt = 0.0003583982886683592
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.3%)
   LB compute        : 325.44 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (67.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003582553090782619                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8235e+05 | 337408 |      1 | 3.824e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3740652220719163 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23336401166884374, dt = 0.0003582553090782619
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 380.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003581242698937466                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.4369e+05 | 337408 |      1 | 3.999e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.224965841440826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.233722266977922, dt = 0.0003581242698937466
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 357.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035800397799027825                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3162e+05 | 337408 |      1 | 4.057e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1776347737907193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23408039124781574, dt = 0.00035800397799027825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 328.95 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (73.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578933757288406                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7408e+05 | 337408 |      1 | 3.860e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.338770529716564 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.234438395225806, dt = 0.0002674871271351742
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 310.72 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003578168614430129                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1690e+05 | 337408 |      1 | 4.130e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3314254633088 (tsim/hr)                              [amr::RAMSES][rank=0]
Info: time since start : 1075.1173624100002 (s)                                   [Godunov][rank=0]
snapshot 114 time 0.23470588235294118
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
analysis done
amr::Godunov: t = 0.23470588235294118, dt = 0.0003578168614430129
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.71 us    (2.4%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 381.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003577209628199975                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9963e+05 | 337408 |      1 | 4.220e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0527842282665882 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2350636992143842, dt = 0.0003577209628199975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.7%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 333.37 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  4992

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035763242064132796                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7654e+05 | 337408 |      1 | 3.849e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3455045375337837 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2354214201772042, dt = 0.00035763242064132796
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 341.92 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003575505523485348                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5613e+05 | 337408 |      1 | 3.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2668010169766717 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2357790525978455, dt = 0.0003575505523485348
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 342.49 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035747474867832223                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.8205e+05 | 337408 |      1 | 3.825e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.364932593773066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23613660315019405, dt = 0.00035747474867832223
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.6%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 23.25 us   (6.0%)
   LB compute        : 344.12 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003574044650120424                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.5081e+05 | 337408 |      1 | 3.966e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.245079458916919 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23649407789887236, dt = 0.000270627983480598
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.5%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 388.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (73.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003573548232780311                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7293e+05 | 337408 |      1 | 3.865e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5205809224693914 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1078.995301757 (s)                                       [Godunov][rank=0]
snapshot 115 time 0.23676470588235296
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
analysis done
amr::Godunov: t = 0.23676470588235296, dt = 0.0003573548232780311
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.79 us    (2.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 552.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 364.97 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003572930716890898                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6416e+05 | 337408 |      1 | 3.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2948854047400924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.237122060705631, dt = 0.0003572930716890898
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 381.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035723561632443096                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6953e+05 | 337408 |      1 | 3.880e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3147801505501455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23747935377732007, dt = 0.00035723561632443096
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.7%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 345.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.3%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003571820950183654                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7676e+05 | 337408 |      1 | 3.848e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.341823686650302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2378365893936445, dt = 0.0003571820950183654
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.6%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 349.70 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (67.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035713218178047795                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7315e+05 | 337408 |      1 | 3.864e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3275750038179943 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23819377148866286, dt = 0.00035713218178047795
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.7%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 357.03 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (73.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035708558274575366                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7527e+05 | 337408 |      1 | 3.855e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.335178704899666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23855090367044335, dt = 0.00027262574132136397
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.7%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 345.75 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035705218521183676                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7366e+05 | 337408 |      1 | 3.862e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.54129654237358 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1082.838171997 (s)                                       [Godunov][rank=0]
snapshot 116 time 0.2388235294117647
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
analysis done
amr::Godunov: t = 0.2388235294117647, dt = 0.00035705218521183676
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.73 us    (2.5%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 372.76 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003570107913096331                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6919e+05 | 337408 |      1 | 3.882e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3112505479048533 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23918058159697655, dt = 0.0003570107913096331
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.8%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 360.74 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.5%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569720394473747                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7667e+05 | 337408 |      1 | 4.344e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9584471829525762 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23953759238828617, dt = 0.0003569720394473747
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 405.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035693573366384274                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6902e+05 | 337408 |      1 | 3.883e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.309863293897714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23989456442773355, dt = 0.00035693573366384274
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.6%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 339.85 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (72.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003569016961275434                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7595e+05 | 337408 |      1 | 3.852e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3359437263335203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2402515001613974, dt = 0.0003569016961275434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 397.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (72.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  9088

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  574

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035686976437689994                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6760e+05 | 337408 |      1 | 3.889e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.303830559593056 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24060840185752494, dt = 0.0002739510836515524
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 342.08 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003568466554830153                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.3024e+05 | 337408 |      1 | 4.064e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.426742728875672 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1086.74540737 (s)                                        [Godunov][rank=0]
snapshot 117 time 0.2408823529411765
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
analysis done
amr::Godunov: t = 0.2408823529411765, dt = 0.0003568466554830153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.60 us   (2.7%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 371.33 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.000356818086037165                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7375e+05 | 337408 |      1 | 3.862e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3267363632715363 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24123919959665951, dt = 0.000356818086037165
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 348.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003567912407956533                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6884e+05 | 337408 |      1 | 3.883e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.307753004029628 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24159601768269667, dt = 0.0003567912407956533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 347.69 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035676600256239014                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7283e+05 | 337408 |      1 | 4.366e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9420315805011104 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24195280892349233, dt = 0.00035676600256239014
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 28.70 us   (7.3%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 351.61 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.4%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035674226349673903                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7892e+05 | 337408 |      1 | 3.839e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.345647469131097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24230957492605473, dt = 0.00035674226349673903
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 360.57 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.1%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035671992423076036                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6828e+05 | 337408 |      1 | 3.886e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3049148206015486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24266631718955148, dt = 0.0002748592810367656
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 308.38 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.8%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035670371719385003                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6255e+05 | 337408 |      1 | 3.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5295389658742193 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1090.638191795 (s)                                       [Godunov][rank=0]
snapshot 118 time 0.24294117647058824
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  94
analysis done
amr::Godunov: t = 0.24294117647058824, dt = 0.00035670371719385003
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.66 us    (2.3%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 389.58 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566837987079153                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7087e+05 | 337408 |      1 | 3.874e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3144138809079533 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2432978801877821, dt = 0.0003566837987079153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 324.55 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.0003566651378739906                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6565e+05 | 337408 |      1 | 3.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.294359541903581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24365456398649, dt = 0.0003566651378739906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.7%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 322.22 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (64.6%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035664765243267107                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.7008e+05 | 337408 |      1 | 3.878e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.311056257973478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.244011229124364, dt = 0.00035664765243267107
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 323.69 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 23.24 us   (6.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (71.7%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  0

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: cfl dt = 0.00035663125848357845                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.6872e+05 | 337408 |      1 | 3.884e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3057378643938438 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24436787677679667, dt = 0.00035663125848357845
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.5%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 321.28 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.0%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  12160

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  1342

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  1024

Will refine      1024    blocks


Info: process block count = 49344                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  7168 new block count =  42176              [AMR Grid][rank=0]
Info: cfl dt = 0.00036510949260638913                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0826e+05 | 337408 |      1 | 4.174e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0755219312770787 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24472450803528026, dt = 0.00027549196471973736
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 42176.0 min = 42176.0 factor = 1
 - strategy "round robin" : max = 40067.2 min = 40067.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 42176
    max = 42176
    avg = 42176
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.5%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 331.59 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (63.2%)
Refinement 2:1 balance converged in  1  sweeps
 Count block's flag for derefinement [No geometry validity check and no 2:1 check]       :  8064

 Count block's flag for derefinement [After geometry validity check and before 2:1 check]        :  318

Derefinement 2:1 balance converge in      2      sweeps


 Count block's flag for derefinement [After geometry validity check and after 2:1 check]         :  254

Info: process block count = 42176                                                 [AMRGrid][rank=0]
Info: patch 0 derefine block count =  1778 new block count =  40398              [AMR Grid][rank=0]
Info: cfl dt = 0.0003644768923703571                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1588e+05 | 323184 |      1 | 3.961e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.503730113789836 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1094.531157216 (s)                                       [Godunov][rank=0]
snapshot 119 time 0.245
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
cell count on line:  92
analysis done
345 sodanalysis = model.make_analysis_sodtube(sod, (0, 1, 0), t_target, xref, 0.0, 1.0)
346 rho, v, P = sodanalysis.compute_L2_dist()
347 print(rho, v, P)
348
349 del ctx, model
0.001071729945074644 (0.0, 0.03724582972839467, 0.0) 0.0023396653911319253
352 glob_str = "_to_trash/sod_tube_amr_second_*.png"
353 ani = show_image_sequence(glob_str)
354
355 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
356 ani.save("_to_trash/sod_tube_amr_second.gif", writer=writer)
357
358 if shamrock.sys.world_rank() == 0:
359     plt.show()

Overlay first- vs second-order profiles

364 data_second = np.load("_to_trash/sod_tube_amr_second_last.npy", allow_pickle=True).item()
365 data_first = np.load("_to_trash/sod_tube_amr_first_last.npy", allow_pickle=True).item()
366
367 overlay_plot("rho", "rho", "_to_trash/compare_rho.png", data_first, data_second)
368 overlay_plot("vx", "vx", "_to_trash/compare_vx.png", data_first, data_second)
369 overlay_plot("P", "P", "_to_trash/compare_P.png", data_first, data_second)
370
371 if shamrock.sys.world_rank() == 0:
372     plt.show()
  • run compare amr refine sod
  • run compare amr refine sod
  • run compare amr refine sod

Total running time of the script: (18 minutes 45.445 seconds)

Estimated memory usage: 2432 MB

Gallery generated by Sphinx-Gallery